[csdoc-patches] CVS: csdoc/src/tests test_21.cs,NONE,1.1 ChangeLog,1.15,1.16 validTests,1.6,1.7
Status: Planning
Brought to you by:
mastergaurav
|
From: Gaurav V. <mas...@us...> - 2003-03-28 12:07:54
|
Update of /cvsroot/csdoc/csdoc/src/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv7958
Modified Files:
ChangeLog validTests
Added Files:
test_21.cs
Log Message:
2003-03-28
* test_21.cs : Attributes. Nothing extra as such.
--- NEW FILE ---
using System;
namespace MCSDoc.Tests
{
[AttributeUsage(AttributeTargets.All)]
public class test_21Attribute : Attribute
{
private int x;
public test_21Attribute(int x)
{
this.x = x;
}
public int X
{
get
{
return x;
}
}
}
[test_21(10)]
public class test_21Class
{
public test_21Class()
{
}
}
}
Index: ChangeLog
===================================================================
RCS file: /cvsroot/csdoc/csdoc/src/tests/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog 27 Mar 2003 17:46:40 -0000 1.15
+++ ChangeLog 28 Mar 2003 12:07:49 -0000 1.16
@@ -1,5 +1,9 @@
-2003-03-26 Gaurav Vaish <mastergaurav AT users DOT sf DOT net>
+2003-03-28 Gaurav Vaish <mastergaurav AT users DOT sf DOT net>
+
+ * test_21.cs : Attributes. Nothing extra as such.
+
+2003-03-27 Gaurav Vaish <mastergaurav AT users DOT sf DOT net>
* test_20.cs : A fun delegate test.
Index: validTests
===================================================================
RCS file: /cvsroot/csdoc/csdoc/src/tests/validTests,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- validTests 27 Mar 2003 17:46:41 -0000 1.6
+++ validTests 28 Mar 2003 12:07:50 -0000 1.7
@@ -1 +1,18 @@
-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 test_16.cs test_17.cs test_18.cs test_19.cs test_20.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
+test_16.cs
+test_17.cs
+test_18.cs
+test_19.cs
+test_20.cs
+test_21.cs
\ No newline at end of file
|