AllTests.cs 916 B

12345678910111213141516171819202122232425262728293031
  1. // Testsuite.System.AllSystemTests.cs
  2. //
  3. // Mario Martinez ([email protected])
  4. //
  5. // (C) Ximian, Inc. http://www.ximian.com
  6. //
  7. using System;
  8. using NUnit.Framework;
  9. namespace MonoTests.System.Text {
  10. /// <summary>
  11. /// Combines all available unit tests into one test suite.
  12. /// </summary>
  13. public class AllTests : TestCase {
  14. public AllTests(string name) : base(name) {}
  15. public static ITest Suite
  16. {
  17. get
  18. {
  19. TestSuite suite = new TestSuite();
  20. //suite.AddTest(StringBuilderTest.Suite);
  21. suite.AddTest(ASCIIEncodingTest.Suite);
  22. //suite.AddTest(UTF8EncodingTest.Suite);
  23. return suite;
  24. }
  25. }
  26. }
  27. }