vladimir 2003/04/05 21:37:17
Modified: java/tests/src/org/apache/xindice/integration/client/basic CollectionTest.java Log: a test should fail if it doesn't pass... Revision Changes Path 1.4 +7 -2 xml-xindice/java/tests/src/org/apache/xindice/integration/client/basic/CollectionTest.java Index: CollectionTest.java =================================================================== RCS file: /home/cvs/xml-xindice/java/tests/src/org/apache/xindice/integration/client/basic/CollectionTest.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- CollectionTest.java 28 Oct 2002 08:39:20 -0000 1.3 +++ CollectionTest.java 6 Apr 2003 05:37:16 -0000 1.4 @@ -124,6 +124,7 @@ //assertTrue( e.getMessage().lastIndexOf( "Duplicate Collection" ) > 0 ); return; } + fail(); } public void testCreateCollectionNullName() @@ -134,6 +135,7 @@ //assertTrue( e.getMessage().lastIndexOf( "Duplicate Collection" ) > 0 ); return; } + fail(); } public void testDropCollectionTwice() @@ -147,6 +149,7 @@ //assertTrue( e.getMessage().lastIndexOf( "could not be found" ) > 0 ); return; } + fail(); } public void testDropCollectionNullName() @@ -157,6 +160,7 @@ //assertTrue( e.getMessage().lastIndexOf( "could not be found" ) > 0 ); return; } + fail(); } public void testDropCollectionEmptyName() @@ -167,6 +171,7 @@ //assertTrue( e.getMessage().lastIndexOf( "could not be found" ) > 0 ); return; } + fail(); } public void testGetCollectionCount()