dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/tests/runtime Testruntime.cs,1.6,1.7


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/tests/runtime Testruntime.cs,1.6,1.7
Date: Thu, 28 Nov 2002 23:09:15 -0500

Update of /cvsroot/dotgnu-pnet/pnetlib/tests/runtime
In directory subversions:/tmp/cvs-serv28588/tests/runtime

Modified Files:
        Testruntime.cs 
Log Message:


Rearrange the tests so that each major namespace is in its own suite.


Index: Testruntime.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/tests/runtime/Testruntime.cs,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** Testruntime.cs      29 Nov 2002 03:42:03 -0000      1.6
--- Testruntime.cs      29 Nov 2002 04:09:13 -0000      1.7
***************
*** 27,43 ****
        public static TestSuite Suite()
                        {
!                               TestSuite fullSuite = new TestSuite("Runtime 
Tests");
!                               TestSuite suite = new TestSuite("Core Class 
Tests");
!                               suite.AddTests(typeof(TestBoolean));
!                               suite.AddTests(typeof(TestSByte));
!                               suite.AddTests(typeof(TestString));
!                               suite.AddTests(typeof(TestStringBuilder));
!                               suite.AddTests(typeof(TestArrayList));
!                       #if !ECMA_COMPAT
!                               suite.AddTests(typeof(TestGuid));
!                       #endif
!                               fullSuite.AddTest(suite);
!                               fullSuite.AddTest(TestCryptography.Suite());
!                               return fullSuite;
                        }
  
--- 27,39 ----
        public static TestSuite Suite()
                        {
!                               // Each namespace has a "SuiteXXX" class that 
defines
!                               // the tests in that namespace.  See the 
subdirectories
!                               // for these classes when adding new tests.
!                               TestSuite suite = new TestSuite("Runtime 
Tests");
!                               suite.AddTest(SuiteSystem.Suite());
!                               suite.AddTest(SuiteCollections.Suite());
!                               suite.AddTest(SuiteText.Suite());
!                               suite.AddTest(SuiteCryptography.Suite());
!                               return suite;
                        }
  





reply via email to

[Prev in Thread] Current Thread [Next in Thread]