[csdoc-patches] CVS: csdoc/src/tests test_14.cs,NONE,1.1 test_15.cs,NONE,1.1 ChangeLog,1.10,1.11 val
Status: Planning
Brought to you by:
mastergaurav
From: Gaurav V. <mas...@us...> - 2003-02-26 10:00:41
|
Update of /cvsroot/csdoc/csdoc/src/tests In directory sc8-pr-cvs1:/tmp/cvs-serv29900 Modified Files: ChangeLog validTests Added Files: test_14.cs test_15.cs Log Message: 2003-02-26 * test_14.cs, * test_15.cs : Added new tests for inner classes. --- NEW FILE --- using System; namespace CSDoc.Tests { public class test_14 { /// <summary> /// test_14.Inner class /// </summary> public class Inner { } public string GetEmpty() { return String.Empty; } } } --- NEW FILE --- using System; namespace CSDoc.Tests { public class test_15 { /// <summary> /// test_14.Inner class /// </summary> public class Inner1 { public class Inner2 { } } public string GetEmpty() { return String.Empty; } } } Index: ChangeLog =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/tests/ChangeLog,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- ChangeLog 25 Feb 2003 13:25:46 -0000 1.10 +++ ChangeLog 26 Feb 2003 10:00:37 -0000 1.11 @@ -1,4 +1,9 @@ +2003-02-26 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> + + * test_14.cs, + * test_15.cs : Added new tests for inner classes. + 2003-02-25 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> * validTests : List of valid tests. Cause successful Index: validTests =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/tests/validTests,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- validTests 25 Feb 2003 13:25:47 -0000 1.1 +++ validTests 26 Feb 2003 10:00:37 -0000 1.2 @@ -1 +1 @@ -test.cs test_04.cs test_05.cs test_06.cs test_07.cs test_08.cs test_10.cs test_11.cs test_12.cs test_13.cs \ No newline at end of file +test.cs test_04.cs test_05.cs test_06.cs test_07.cs test_08.cs test_10.cs test_11.cs test_12.cs test_13.cs test_14.cs test_15.cs \ No newline at end of file |