From: Jean-Marc V. <jm...@us...> - 2004-07-21 05:49:22
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/xmldb/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20467/src/org/exist/xmldb/test Added Files: RemoteCollectionTest.java Log Message: implement reindexCollection (not yet tested) --- NEW FILE: RemoteCollectionTest.java --- /* * Created on 20 juil. 2004 $Id: RemoteCollectionTest.java,v 1.1 2004/07/21 05:49:13 jmvanel Exp $ */ package org.exist.xmldb.test; import junit.framework.TestCase; import org.exist.Server; /** WORK IN PROGRESS !!! * @author jmv */ public class RemoteCollectionTest extends TestCase { protected final static String URI = "http://localhost:8080/exist/xmlrpc"; /** ? @see junit.framework.TestCase#setUp() */ protected void setUp() throws Exception { String[] args = {"standalone"}; Server.main(args); // Thread ?? } /** ? @see junit.framework.TestCase#tearDown() */ protected void tearDown() throws Exception { // TODO } public void testIndexQueryService() { // TODO ............. } /** * @param name */ public RemoteCollectionTest(String name) { super(name); } } |