|
From: <pe...@us...> - 2004-01-21 23:41:11
|
Update of /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv19296/src/java/org/neuclear/tests
Modified Files:
AbstractObjectCreationTest.java
Log Message:
Started the unit tests for the new payment message format.
Index: AbstractObjectCreationTest.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/tests/AbstractObjectCreationTest.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** AbstractObjectCreationTest.java 20 Jan 2004 17:39:12 -0000 1.3
--- AbstractObjectCreationTest.java 21 Jan 2004 23:41:08 -0000 1.4
***************
*** 3,7 ****
import org.neuclear.commons.NeuClearException;
import org.neuclear.commons.crypto.signers.NonExistingSignerException;
- import org.neuclear.id.NSTools;
import org.neuclear.id.SignedNamedObject;
import org.neuclear.id.builders.Builder;
--- 3,6 ----
***************
*** 22,26 ****
}
! public void testCreateObject() throws NeuClearException, XMLException {
Builder builder=createBuilder();
assertNotNull(builder);
--- 21,25 ----
}
! public void testCreateObject() throws Exception, XMLException {
Builder builder=createBuilder();
assertNotNull(builder);
***************
*** 33,36 ****
protected abstract void verifyObject(SignedNamedObject obj) throws NonExistingSignerException;
! protected abstract Builder createBuilder() throws NeuClearException;
}
--- 32,35 ----
protected abstract void verifyObject(SignedNamedObject obj) throws NonExistingSignerException;
! protected abstract Builder createBuilder() throws Exception;
}
|