[csdoc-patches] CVS: csdoc/src/tests test_02.cs,NONE,1.1 test_03.cs,NONE,1.1 ChangeLog,1.1,1.2 test_
Status: Planning
Brought to you by:
mastergaurav
From: Gaurav V. <mas...@us...> - 2003-02-20 06:57:42
|
Update of /cvsroot/csdoc/csdoc/src/tests In directory sc8-pr-cvs1:/tmp/cvs-serv32757 Modified Files: ChangeLog test_01.cs Added Files: test_02.cs test_03.cs Log Message: 2003-02-20 * test_02.cs. test_03.cs : Added new tests. --- NEW FILE --- using System; /** * <summary>test_02</summary> */ public class test_02 { // Comment over test_02::Main(String[] args) // How does it work? public static void Main(string[] args) { System.Console.WriteLine("Inside Main..."); } } --- NEW FILE --- using System; /** * <summary>test_03</summary> */ public class test_03 { // Comment over test_03::Arbit(alpha[] args) // How does it work? public static void Arbit(alpha[] a, beta b) { System.Console.WriteLine("Inside Main..."); } } Index: ChangeLog =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/tests/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ChangeLog 20 Feb 2003 05:48:30 -0000 1.1 +++ ChangeLog 20 Feb 2003 06:57:38 -0000 1.2 @@ -1,5 +1,9 @@ 2003-02-20 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> + * test_02.cs. test_03.cs : Added new tests. + +2003-02-20 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> + * test.cs, test_01.cs : Test files. Index: test_01.cs =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/tests/test_01.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- test_01.cs 20 Feb 2003 05:48:30 -0000 1.1 +++ test_01.cs 20 Feb 2003 06:57:38 -0000 1.2 @@ -1,19 +1,20 @@ using System; /** - * <summary>Hello</summary> + * <summary>test_01</summary> */ public class test_01 { - // Comment over HandleTest + // Comment over test_01::HandleTest public event EventHandler HandleTest { add { } remove { } } - // Comment over Main()... + // Comment over test_01::Main()... public static void Main() { + System.Console.WriteLine("Inside Main..."); } } |