From: Wolfgang M. M. <wol...@us...> - 2004-08-08 19:03:34
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/xmldb/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv796/src/org/exist/xmldb/test Modified Files: DOMTestJUnit.java Log Message: Fixed wrong handling of default namespaces, introduced by my previous changes. Index: DOMTestJUnit.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/xmldb/test/DOMTestJUnit.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DOMTestJUnit.java 7 Aug 2004 16:59:31 -0000 1.1 --- DOMTestJUnit.java 8 Aug 2004 19:03:25 -0000 1.2 *************** *** 1,4 **** /* ! * Created on 7 août 2004 $Id$ */ --- 1,4 ---- /* ! * Created on 7 ao�t 2004 $Id$ */ *************** *** 16,19 **** --- 16,20 ---- import junit.framework.TestCase; + import junit.textui.TestRunner; /** *************** *** 99,101 **** --- 100,106 ---- assertEquals( "One more element after update", 2, rootElem.getChildNodes().getLength() ); } + + public static void main(String[] args) { + TestRunner.run(DOMTestJUnit.class); + } } |