[csdoc-patches] CVS: csdoc/src/tests test_17.cs,NONE,1.1 test_18.cs,NONE,1.1 ChangeLog,1.12,1.13 val
Status: Planning
Brought to you by:
mastergaurav
|
From: Gaurav V. <mas...@us...> - 2003-03-09 15:19:09
|
Update of /cvsroot/csdoc/csdoc/src/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv6401
Modified Files:
ChangeLog validTests
Added Files:
test_17.cs test_18.cs
Log Message:
2003-03-09
* test_17.cs : Namespace within namespace.
* test_18.cs : Enum inside a class.
--- NEW FILE ---
using System;
namespace MCSDoc.Tests
{
namespace SubTest
{
public struct test_17
{
/// <summary>
/// test_17.Inner1 class
/// </summary>
public class Inner1
{
public class Inner2
{
}
}
public string GetEmpty()
{
return String.Empty;
}
}
}
}
--- NEW FILE ---
using System;
namespace CSDoc.Tests
{
public class test_18
{
/// <summary>
/// test_18.Inner1 enum
/// </summary>
enum Inner1
{
Field1,
Field2
}
}
}
Index: ChangeLog
===================================================================
RCS file: /cvsroot/csdoc/csdoc/src/tests/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog 26 Feb 2003 10:10:18 -0000 1.12
+++ ChangeLog 9 Mar 2003 15:19:06 -0000 1.13
@@ -1,4 +1,9 @@
+2003-03-09 Gaurav Vaish <mastergaurav AT users DOT sf DOT net>
+
+ * test_17.cs : Namespace within namespace.
+ * test_18.cs : Enum inside a class.
+
2003-02-26 Gaurav Vaish <mastergaurav AT users DOT sf DOT net>
* test_15.cs : Typo bug in documentation.
Index: validTests
===================================================================
RCS file: /cvsroot/csdoc/csdoc/src/tests/validTests,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- validTests 26 Feb 2003 10:10:19 -0000 1.3
+++ validTests 9 Mar 2003 15:19:06 -0000 1.4
@@ -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
\ 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
\ No newline at end of file
|