Update of /cvsroot/csdoc/csdoc/src/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv866
Modified Files:
ChangeLog test_15.cs validTests
Added Files:
test_16.cs
Log Message:
2003-02-26
* test_15.cs : Typo bug in documentation.
* test_16.cs : Classes inside structs.
--- NEW FILE ---
using System;
namespace CSDoc.Tests
{
public struct test_16
{
/// <summary>
/// test_16.Inner1 class
/// </summary>
public class Inner1
{
public class Inner2
{
}
}
public string GetEmpty()
{
return String.Empty;
}
}
}
Index: ChangeLog
===================================================================
RCS file: /cvsroot/csdoc/csdoc/src/tests/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog 26 Feb 2003 10:00:37 -0000 1.11
+++ ChangeLog 26 Feb 2003 10:10:18 -0000 1.12
@@ -1,6 +1,11 @@
2003-02-26 Gaurav Vaish <mastergaurav AT users DOT sf DOT net>
+ * test_15.cs : Typo bug in documentation.
+ * test_16.cs : Classes inside structs.
+
+2003-02-26 Gaurav Vaish <mastergaurav AT users DOT sf DOT net>
+
* test_14.cs,
* test_15.cs : Added new tests for inner classes.
Index: test_15.cs
===================================================================
RCS file: /cvsroot/csdoc/csdoc/src/tests/test_15.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- test_15.cs 26 Feb 2003 10:00:37 -0000 1.1
+++ test_15.cs 26 Feb 2003 10:10:18 -0000 1.2
@@ -5,7 +5,7 @@
public class test_15
{
/// <summary>
- /// test_14.Inner class
+ /// test_15.Inner1 class
/// </summary>
public class Inner1
{
Index: validTests
===================================================================
RCS file: /cvsroot/csdoc/csdoc/src/tests/validTests,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- validTests 26 Feb 2003 10:00:37 -0000 1.2
+++ validTests 26 Feb 2003 10:10:19 -0000 1.3
@@ -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
\ 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
\ No newline at end of file
|