|
From: <pe...@us...> - 2003-12-11 23:57:34
|
Update of /cvsroot/neuclear/neuclear-id/src/test/org/neuclear/store
In directory sc8-pr-cvs1:/tmp/cvs-serv1620/src/test/org/neuclear/store
Modified Files:
AbstractStoreTest.java
Log Message:
Trying to test the ReceiverServlet with cactus. Still no luck. Need to return a ElementProxy of some sort.
Cleaned up some missing fluff in the ElementProxy interface. getTagName(), getQName() and getNameSpace() have been killed.
Index: AbstractStoreTest.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/test/org/neuclear/store/AbstractStoreTest.java,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** AbstractStoreTest.java 10 Dec 2003 23:58:52 -0000 1.15
--- AbstractStoreTest.java 11 Dec 2003 23:57:30 -0000 1.16
***************
*** 2,5 ****
--- 2,9 ----
$Id$
$Log$
+ Revision 1.16 2003/12/11 23:57:30 pelle
+ Trying to test the ReceiverServlet with cactus. Still no luck. Need to return a ElementProxy of some sort.
+ Cleaned up some missing fluff in the ElementProxy interface. getTagName(), getQName() and getNameSpace() have been killed.
+
Revision 1.15 2003/12/10 23:58:52 pelle
Did some cleaning up in the builders
***************
*** 159,163 ****
import org.neuclear.commons.NeuClearException;
! import org.neuclear.id.InvalidNamedObject;
import org.neuclear.id.SignedNamedObject;
import org.neuclear.id.builders.IdentityBuilder;
--- 163,167 ----
import org.neuclear.commons.NeuClearException;
! import org.neuclear.id.InvalidNamedObjectException;
import org.neuclear.id.SignedNamedObject;
import org.neuclear.id.builders.IdentityBuilder;
***************
*** 188,192 ****
! public final void testStore() throws NeuClearException, InvalidNamedObject, XMLException {
System.out.println("\nTesting " + this.getClass().getName());
System.out.println("Storing " + bobName);
--- 192,196 ----
! public final void testStore() throws NeuClearException, InvalidNamedObjectException, XMLException {
System.out.println("\nTesting " + this.getClass().getName());
System.out.println("Storing " + bobName);
|