[csdoc-patches] CVS: csdoc/src/tests test_19.cs,NONE,1.1 ChangeLog,1.13,1.14 test_07.cs,1.1,1.2 test
Status: Planning
Brought to you by:
mastergaurav
|
From: Gaurav V. <mas...@us...> - 2003-03-26 14:50:56
|
Update of /cvsroot/csdoc/csdoc/src/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv24743
Modified Files:
ChangeLog test_07.cs test_13.cs validTests
Added Files:
test_19.cs
Log Message:
2003-03-26
* test_19.cs : Added test for attributes.
* test_07.cs, test_14.cs : Corrected the comment.
--- NEW FILE ---
using System;
/**
* <summary>Hello</summary>
*/
[AttributeUsage(AttributeTargets.All)]
public class test_19 : Attribute
{
private int value;
public test_19()
{
}
public int Value
{
get
{
return value;
}
set
{
this.value = value;
}
}
}
Index: ChangeLog
===================================================================
RCS file: /cvsroot/csdoc/csdoc/src/tests/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog 9 Mar 2003 15:19:06 -0000 1.13
+++ ChangeLog 26 Mar 2003 14:50:42 -0000 1.14
@@ -1,4 +1,9 @@
+2003-03-26 Gaurav Vaish <mastergaurav AT users DOT sf DOT net>
+
+ * test_19.cs : Added test for attributes.
+ * test_07.cs, test_14.cs : Corrected the comment.
+
2003-03-09 Gaurav Vaish <mastergaurav AT users DOT sf DOT net>
* test_17.cs : Namespace within namespace.
Index: test_07.cs
===================================================================
RCS file: /cvsroot/csdoc/csdoc/src/tests/test_07.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- test_07.cs 20 Feb 2003 14:30:26 -0000 1.1
+++ test_07.cs 26 Mar 2003 14:50:43 -0000 1.2
@@ -1,7 +1,7 @@
using System;
/**
- * <summary>test_06</summary>
+ * <summary>test_07</summary>
*/
public class test_07
{
Index: test_13.cs
===================================================================
RCS file: /cvsroot/csdoc/csdoc/src/tests/test_13.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- test_13.cs 25 Feb 2003 12:07:08 -0000 1.1
+++ test_13.cs 26 Mar 2003 14:50:43 -0000 1.2
@@ -1,6 +1,6 @@
using System;
-/// <summary>test_12</summary>
+/// <summary>test_13</summary>
public class test_13 : test, test_12
{
/// <summary>Returns M1</summary>
Index: validTests
===================================================================
RCS file: /cvsroot/csdoc/csdoc/src/tests/validTests,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- validTests 9 Mar 2003 15:19:06 -0000 1.4
+++ validTests 26 Mar 2003 14:50:43 -0000 1.5
@@ -1 +1 @@
-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
\ 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
\ No newline at end of file
|