|
From: <pe...@us...> - 2003-12-11 23:57:33
|
Update of /cvsroot/neuclear/neuclear-id/src/test/org/neuclear/id/verifier
In directory sc8-pr-cvs1:/tmp/cvs-serv1620/src/test/org/neuclear/id/verifier
Modified Files:
VerificationTest.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: VerificationTest.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/test/org/neuclear/id/verifier/VerificationTest.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** VerificationTest.java 6 Dec 2003 00:17:04 -0000 1.9
--- VerificationTest.java 11 Dec 2003 23:57:30 -0000 1.10
***************
*** 5,9 ****
import org.neuclear.commons.NeuClearException;
import org.neuclear.commons.crypto.CryptoTools;
! import org.neuclear.id.InvalidNamedObject;
import org.neuclear.id.SignedNamedObject;
import org.neuclear.xml.XMLException;
--- 5,9 ----
import org.neuclear.commons.NeuClearException;
import org.neuclear.commons.crypto.CryptoTools;
! import org.neuclear.id.InvalidNamedObjectException;
import org.neuclear.id.SignedNamedObject;
import org.neuclear.xml.XMLException;
***************
*** 31,34 ****
--- 31,38 ----
$Id$
$Log$
+ Revision 1.10 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.9 2003/12/06 00:17:04 pelle
Updated various areas in NSTools.
***************
*** 125,129 ****
assertTrue(wantValid);
! } catch (InvalidNamedObject e) {
System.out.println("INVALID " + e.getMessage());
assertTrue(!wantValid);
--- 129,133 ----
assertTrue(wantValid);
! } catch (InvalidNamedObjectException e) {
System.out.println("INVALID " + e.getMessage());
assertTrue(!wantValid);
|