[csdoc-patches] CVS: csdoc/src/tests test_22.cs,NONE,1.1 test_23.cs,NONE,1.1 test_24.cs,NONE,1.1 Cha
Status: Planning
Brought to you by:
mastergaurav
From: Gaurav V. <mas...@us...> - 2003-04-08 06:22:13
|
Update of /cvsroot/csdoc/csdoc/src/tests In directory sc8-pr-cvs1:/tmp/cvs-serv14311 Modified Files: ChangeLog test_05.cs test_19.cs validTests Added Files: test_22.cs test_23.cs test_24.cs Log Message: 2003-04-07 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> * test_24.cs : More than one namespace. 2003-04-06 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> * test_05.cs, * test_22.cs : Class name clarifies that it's an exception. * test_22.cs, * test_23.cs : Added new tests - Exception, Attribute. --- NEW FILE --- using System; public class test_22Exception : test_05Exception { // Default ctor public test_22Exception() : base() { } // ctor with message public test_22Exception(string message) : base(message) { } } --- NEW FILE --- using System; /** * <summary>Hello</summary> */ [AttributeUsage(AttributeTargets.All)] public class test_23Attribute : test_19Attribute { private int otherValue; public test_23Attribute() { } public int OtherValue { get { return otherValue; } set { this.otherValue = value; } } } --- NEW FILE --- using System; /** * <summary>CSDoc.Test/summary> */ namespace MCSDoc.Tests { namespace TestInner { enum test_24 { One, Two } } public struct test_24 { public int Zero { get { return 0; } } } } namespace MCSDoc.Tests1 { enum test_24 { One, Two } } Index: ChangeLog =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/tests/ChangeLog,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- ChangeLog 28 Mar 2003 12:07:49 -0000 1.16 +++ ChangeLog 8 Apr 2003 06:22:09 -0000 1.17 @@ -1,4 +1,15 @@ +2003-04-07 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> + + * test_24.cs : More than one namespace. + +2003-04-06 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> + + * test_05.cs, + * test_22.cs : Class name clarifies that it's an exception. + * test_22.cs, + * test_23.cs : Added new tests - Exception, Attribute. + 2003-03-28 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> * test_21.cs : Attributes. Nothing extra as such. Index: test_05.cs =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/tests/test_05.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- test_05.cs 20 Feb 2003 13:52:18 -0000 1.1 +++ test_05.cs 8 Apr 2003 06:22:10 -0000 1.2 @@ -1,14 +1,14 @@ using System; -public class test_05 : Exception +public class test_05Exception : Exception { // Default ctor - public test_05() : base() + public test_05Exception() : base() { } // ctor with message - public test_05(string message) : base(message) + public test_05Exception(string message) : base(message) { } } Index: test_19.cs =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/tests/test_19.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- test_19.cs 26 Mar 2003 14:50:43 -0000 1.1 +++ test_19.cs 8 Apr 2003 06:22:10 -0000 1.2 @@ -4,11 +4,11 @@ * <summary>Hello</summary> */ [AttributeUsage(AttributeTargets.All)] -public class test_19 : Attribute +public class test_19Attribute : Attribute { private int value; - public test_19() + public test_19Attribute() { } Index: validTests =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/tests/validTests,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- validTests 28 Mar 2003 12:07:50 -0000 1.7 +++ validTests 8 Apr 2003 06:22:10 -0000 1.8 @@ -15,4 +15,7 @@ test_18.cs test_19.cs test_20.cs -test_21.cs \ No newline at end of file +test_21.cs +test_22.cs +test_23.cs +test_24.cs \ No newline at end of file |