[csdoc-patches] CVS: csdoc/src/tests test_09.cs,NONE,1.1 test_10.cs,NONE,1.1 ChangeLog,1.5,1.6
Status: Planning
Brought to you by:
mastergaurav
From: Gaurav V. <mas...@us...> - 2003-02-21 07:09:49
|
Update of /cvsroot/csdoc/csdoc/src/tests In directory sc8-pr-cvs1:/tmp/cvs-serv13782 Modified Files: ChangeLog Added Files: test_09.cs test_10.cs Log Message: 2003-02-21 * test_09.cs, * test_10.cs : Added new tests. --- NEW FILE --- using System; /** * <summary>CSDoc.Test/summary> */ namespace CSDoc.Test { public class test_09 { // Comment over test_09::Main(String[] args) public static void Main(string[] args) { System.Console.WriteLine("Inside Main..."); } } } --- NEW FILE --- using System; /** * <summary>CSDoc.Test/summary> */ namespace CSDoc.Test { public struct test_10 { public int Zero { get { return 0; } } } } Index: ChangeLog =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/tests/ChangeLog,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- ChangeLog 20 Feb 2003 14:35:02 -0000 1.5 +++ ChangeLog 21 Feb 2003 07:09:46 -0000 1.6 @@ -1,4 +1,9 @@ +2003-02-21 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> + + * test_09.cs, + * test_10.cs : Added new tests. + 2003-02-20 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> * test_08.cs : Added new test. |