[CJ-dev] commonjava-projects/commonjava-opl/src/test/org/commonjava/opl DocumentDriverTest.java,1.7,
Brought to you by:
johnqueso
From: <joh...@co...> - 2004-02-20 21:27:27
|
Update of /cvsroot/commonjava/commonjava-projects/commonjava-opl/src/test/org/commonjava/opl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12005/src/test/org/commonjava/opl Modified Files: DocumentDriverTest.java Log Message: corrected versioning differences...everything is up to date. Index: DocumentDriverTest.java =================================================================== RCS file: /cvsroot/commonjava/commonjava-projects/commonjava-opl/src/test/org/commonjava/opl/DocumentDriverTest.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- DocumentDriverTest.java 16 Jan 2004 01:37:13 -0000 1.7 +++ DocumentDriverTest.java 20 Feb 2004 21:16:04 -0000 1.8 @@ -28,6 +28,7 @@ } public void testParseUri() throws ParseException{ + System.out.println("Test 1 >>>>>>>>>>>>>>>>>>>>>>>>>>>>"); try { DocumentDriver driver = new DocumentDriver(); OPLEngine engine = OPLEngine.getInstance(driver); @@ -49,9 +50,11 @@ System.out.flush(); fail(e.getMessage()); } + System.out.println("<<<<<<<<<<<<<<<<<<<<<<<<<<<< Test 1"); } public void testParseUri2(){ + System.out.println("Test 2 >>>>>>>>>>>>>>>>>>>>>>>>>>>>"); try { DocumentDriver driver = new DocumentDriver(); OPLEngine engine = OPLEngine.getInstance(driver); @@ -73,9 +76,11 @@ System.out.flush(); fail(e.getMessage()); } + System.out.println("<<<<<<<<<<<<<<<<<<<<<<<<<<<< Test 2"); } public void testParseUri3(){ + System.out.println("Test 3 >>>>>>>>>>>>>>>>>>>>>>>>>>>>"); try { DocumentDriver driver = new DocumentDriver(); OPLEngine engine = OPLEngine.getInstance(driver); @@ -101,9 +106,11 @@ System.out.flush(); fail(e.getMessage()); } + System.out.println("<<<<<<<<<<<<<<<<<<<<<<<<<<<< Test 3"); } public void testParseUri4(){ + System.out.println("Test 4 >>>>>>>>>>>>>>>>>>>>>>>>>>>>"); try { DocumentDriver driver = new DocumentDriver(); OPLEngine engine = OPLEngine.getInstance(driver); @@ -130,9 +137,11 @@ System.out.flush(); fail(e.getMessage()); } + System.out.println("<<<<<<<<<<<<<<<<<<<<<<<<<<<< Test 4"); } public void testParseUri5(){ + System.out.println("Test 5 >>>>>>>>>>>>>>>>>>>>>>>>>>>>"); try { DocumentDriver driver = new DocumentDriver(); OPLEngine engine = OPLEngine.getInstance(driver); @@ -160,9 +169,11 @@ System.out.flush(); fail(e.getMessage()); } + System.out.println("<<<<<<<<<<<<<<<<<<<<<<<<<<<< Test 5"); } public void testParseUri6(){ + System.out.println("Test 6 >>>>>>>>>>>>>>>>>>>>>>>>>>>>"); try { GenericNamespaceResolver resolver = new GenericNamespaceResolver(); resolver.addAlias("http://www.commonjava.org/schema/test", "opl:testlib"); @@ -189,9 +200,11 @@ System.out.flush(); fail(e.getMessage()); } + System.out.println("<<<<<<<<<<<<<<<<<<<<<<<<<<<< Test 6"); } public void testParseUri7(){ + System.out.println("Test 7 >>>>>>>>>>>>>>>>>>>>>>>>>>>>"); try { DocumentDriver driver = new DocumentDriver(); OPLEngine engine = OPLEngine.getInstance(driver); @@ -206,6 +219,7 @@ e.printStackTrace(); fail("Parse of test7.xml failed."); } + System.out.println("<<<<<<<<<<<<<<<<<<<<<<<<<<<< Test 7"); } } |