[csdoc-patches] csdoc/src/tests .cvsignore,NONE,1.1 param1,NONE,1.1 ChangeLog,1.18,1.19 test_03.cs,1
Status: Planning
Brought to you by:
mastergaurav
Update of /cvsroot/csdoc/csdoc/src/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12102 Modified Files: ChangeLog test_03.cs test_05.cs test_19.cs test_22.cs test_23.cs test_24.cs Added Files: .cvsignore param1 Log Message: 2004-10-30 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> * .cvsignore : Ignore some common files * param1 : Let's go for full fledged test. mcsdoc @param1 * test_*.cs : Renamed all data-names to MCSDoc_Test_* --- NEW FILE: .cvsignore --- *.exe *.dll --- NEW FILE: param1 --- /out:test.dll /target:library *.cs Index: ChangeLog =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/tests/ChangeLog,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** ChangeLog 10 Apr 2003 05:16:02 -0000 1.18 --- ChangeLog 30 Oct 2004 14:16:52 -0000 1.19 *************** *** 1,2 **** --- 1,10 ---- + $Id$ + + 2004-10-30 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> + + * .cvsignore : Ignore some common files + * param1 : Let's go for full fledged test. + mcsdoc @param1 + * test_*.cs : Renamed all data-names to MCSDoc_Test_* 2003-04-08 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> Index: test_03.cs =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/tests/test_03.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** test_03.cs 20 Feb 2003 06:57:38 -0000 1.1 --- test_03.cs 30 Oct 2004 14:16:52 -0000 1.2 *************** *** 4,12 **** * <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..."); --- 4,34 ---- * <summary>test_03</summary> */ ! public class MCSDoc_Tests_test_03 { ! /// <summary> ! /// This is enum alpha! ! /// </summary> ! public enum Alpha ! { ! A, ! B ! } ! ! /** ! * And this is struct beta ! * ! * @author $Author$ ! * @version $Revision$ ! */ ! public struct Beta ! { ! public Beta(int x) ! { ! } ! } ! ! // 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: test_05.cs =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/tests/test_05.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** test_05.cs 8 Apr 2003 06:22:10 -0000 1.2 --- test_05.cs 30 Oct 2004 14:16:52 -0000 1.3 *************** *** 1,13 **** using System; ! public class test_05Exception : Exception { // Default ctor ! public test_05Exception() : base() { } // ctor with message ! public test_05Exception(string message) : base(message) { } --- 1,13 ---- using System; ! public class MCSDoc_test_05Exception : Exception { // Default ctor ! public MCSDoc_test_05Exception() : base() { } // ctor with message ! public MCSDoc_test_05Exception(string message) : base(message) { } Index: test_19.cs =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/tests/test_19.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** test_19.cs 8 Apr 2003 06:22:10 -0000 1.2 --- test_19.cs 30 Oct 2004 14:16:53 -0000 1.3 *************** *** 5,13 **** */ [AttributeUsage(AttributeTargets.All)] ! public class test_19Attribute : Attribute { private int value; ! public test_19Attribute() { } --- 5,13 ---- */ [AttributeUsage(AttributeTargets.All)] ! public class MCSDoc_Test_19Attribute : Attribute { private int value; ! public MCSDoc_Test_19Attribute() { } Index: test_22.cs =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/tests/test_22.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** test_22.cs 8 Apr 2003 06:22:10 -0000 1.1 --- test_22.cs 30 Oct 2004 14:16:53 -0000 1.2 *************** *** 1,13 **** using System; ! public class test_22Exception : test_05Exception { // Default ctor ! public test_22Exception() : base() { } // ctor with message ! public test_22Exception(string message) : base(message) { } --- 1,13 ---- using System; ! public class MCSDoc_test_22Exception : MCSDoc_test_05Exception { // Default ctor ! public MCSDoc_test_22Exception() : base() { } // ctor with message ! public MCSDoc_test_22Exception(string message) : base(message) { } Index: test_23.cs =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/tests/test_23.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** test_23.cs 8 Apr 2003 06:22:10 -0000 1.1 --- test_23.cs 30 Oct 2004 14:16:53 -0000 1.2 *************** *** 5,13 **** */ [AttributeUsage(AttributeTargets.All)] ! public class test_23Attribute : test_19Attribute { private int otherValue; ! public test_23Attribute() { } --- 5,13 ---- */ [AttributeUsage(AttributeTargets.All)] ! public class MCSDoc_test_23Attribute : MCSDoc_Test_19Attribute { private int otherValue; ! public MCSDoc_test_23Attribute() { } Index: test_24.cs =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/tests/test_24.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** test_24.cs 8 Apr 2003 06:22:10 -0000 1.1 --- test_24.cs 30 Oct 2004 14:16:53 -0000 1.2 *************** *** 27,31 **** } ! namespace MCSDoc.Tests1 { enum test_24 --- 27,31 ---- } ! namespace MCSDoc.Tests24 { enum test_24 |