NameValueCollectionTest.cs 691 B

123456789101112131415161718192021222324252627282930
  1. // created on 7/21/2001 at 2:36 PM
  2. using System;
  3. using System.Collections;
  4. using System.Collections.Specialized;
  5. using System.Text;
  6. using NUnit.Framework;
  7. namespace MonoTests.System.Collections.Specialized {
  8. /// <summary>Microsoft NameValueCollection test.</summary>
  9. public class NameValueCollectionTest : TestCase {
  10. public NameValueCollectionTest() : base("MonoTests.System.Collections.Specialized.NameValueCollectionTest testsuite") {}
  11. public NameValueCollectionTest(String name) : base(name) {}
  12. public static ITest Suite {
  13. get {
  14. return new TestSuite(typeof(NameValueCollectionTest));
  15. }
  16. }
  17. public void TestToDo ()
  18. {
  19. }
  20. }
  21. }