IndentedTextWriterTest.cs 491 B

123456789101112131415161718192021222324252627
  1. //
  2. // IndentedTextWriterTest.cs:
  3. // NUnit Test Cases for System.CodeDom.Compiler.IndentedTextWriter
  4. //
  5. // Authors:
  6. // Gert Driesen ([email protected])
  7. //
  8. // (C) 2004 Novell
  9. //
  10. using System.CodeDom.Compiler;
  11. using NUnit.Framework;
  12. namespace MonoTests.System.CodeDom.Compiler
  13. {
  14. [TestFixture]
  15. public class IndentedTextWriterTest
  16. {
  17. [Test]
  18. public void DefaultTabStringTest ()
  19. {
  20. Assert.AreEqual (new string (' ', 4), IndentedTextWriter.DefaultTabString);
  21. }
  22. }
  23. }