| 12345678910111213141516171819202122232425262728293031 |
- // Testsuite.System.AllSystemTests.cs
- //
- // Mario Martinez ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- using System;
- using NUnit.Framework;
- namespace MonoTests.System.Text {
- /// <summary>
- /// Combines all available unit tests into one test suite.
- /// </summary>
- public class AllTests : TestCase {
- public AllTests(string name) : base(name) {}
-
- public static ITest Suite
- {
- get
- {
- TestSuite suite = new TestSuite();
- //suite.AddTest(StringBuilderTest.Suite);
- suite.AddTest(ASCIIEncodingTest.Suite);
- //suite.AddTest(UTF8EncodingTest.Suite);
- return suite;
- }
- }
- }
- }
|