From: Wolfgang M. M. <wol...@us...> - 2004-09-21 14:42:15
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/xupdate/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5047/src/org/exist/xupdate/test Modified Files: XUpdateTestCases.java AllTests.java Log Message: * Added missing support for xupdate:if * Fixed xupdate:value-of * Prohibit duplicate attributes Index: XUpdateTestCases.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/xupdate/test/XUpdateTestCases.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** XUpdateTestCases.java 9 Aug 2004 10:24:31 -0000 1.3 --- XUpdateTestCases.java 21 Sep 2004 14:42:05 -0000 1.4 *************** *** 28,34 **** public void appendAttribute() throws Exception { test.doTest("append_attribute", "address.xml"); }; public void appendChild() throws Exception { test.doTest("append_child", "address.xml"); }; - public void insertafter_big() throws Exception { test.doTest("insertafter_big", "address_big.xml"); }; // <add a new TestCase Method here> --- 28,35 ---- public void appendAttribute() throws Exception { test.doTest("append_attribute", "address.xml"); }; public void appendChild() throws Exception { test.doTest("append_child", "address.xml"); }; public void insertafter_big() throws Exception { test.doTest("insertafter_big", "address_big.xml"); }; + public void conditional() throws Exception { test.doTest("conditional", "address.xml"); + } // <add a new TestCase Method here> Index: AllTests.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/xupdate/test/AllTests.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AllTests.java 9 Aug 2004 10:24:31 -0000 1.2 --- AllTests.java 21 Sep 2004 14:42:05 -0000 1.3 *************** *** 28,31 **** --- 28,32 ---- suite.addTest(new XUpdateTestCases("appendChild", test)); suite.addTest(new XUpdateTestCases("insertafter_big", test)); + suite.addTest(new XUpdateTestCases("conditional", test)); /* |