vgritsenko 2003/12/14 11:50:43
Modified: java/tests/src/org/apache/xindice/core/filer FilerTestCase.java Log: correct test case name Revision Changes Path 1.9 +4 -4 xml-xindice/java/tests/src/org/apache/xindice/core/filer/FilerTestCase.java Index: FilerTestCase.java =================================================================== RCS file: /home/cvs/xml-xindice/java/tests/src/org/apache/xindice/core/filer/FilerTestCase.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- FilerTestCase.java 15 Aug 2003 03:08:36 -0000 1.8 +++ FilerTestCase.java 14 Dec 2003 19:50:43 -0000 1.9 @@ -76,10 +76,10 @@ public class FilerTestCase extends TestCase { static public final String TEST_COLLECTION_NAME = "tests"; + static public final Key TEST_KEY = new Key("test.xml"); static public final Value TEST_VALUE = new Value("<test><test></test><test>Just a test</test></test>"); static public final Value TEST_VALUE_2 = new Value("<test><test></test><test>Just a test 2</test></test>"); static public final Value TEST_VALUE_3 = new Value("<test><test></test><test>Just a test 3</test></test>"); - static public final Key TEST_KEY = new Key("test.xml"); protected Filer filer; @@ -97,7 +97,7 @@ } public String getName() { - return this.filer.getName(); + return this.filer.getName() + " " + super.getName(); } public void testSuccessWriteRecord() throws Exception {