|
From: <pe...@us...> - 2004-02-19 15:39:44
|
Update of /cvsroot/neuclear/neuclear-commons/src/test/org/neuclear/commons/crypto/signers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16429/src/test/org/neuclear/commons/crypto/signers Modified Files: TestCaseSignerTest.java Log Message: Various cleanups and corrections Index: TestCaseSignerTest.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/test/org/neuclear/commons/crypto/signers/TestCaseSignerTest.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** TestCaseSignerTest.java 19 Dec 2003 18:02:53 -0000 1.6 --- TestCaseSignerTest.java 19 Feb 2004 15:29:12 -0000 1.7 *************** *** 30,33 **** --- 30,36 ---- $Id$ $Log$ + Revision 1.7 2004/02/19 15:29:12 pelle + Various cleanups and corrections + Revision 1.6 2003/12/19 18:02:53 pelle Revamped a lot of exception handling throughout the framework, it has been simplified in most places: *************** *** 104,107 **** --- 107,111 ---- assertTrue(signer.canSignFor(ALIASEVE)); } + private void testKey(final String name) throws CryptoException, UserCancellationException { final byte[] sig = signer.sign(name, TESTDATA.getBytes()); *************** *** 112,116 **** private final TestCaseSigner signer; ! private final String TESTDATA = "Here we go again"; private static final String ALIASEVE = "neu://eve@test"; --- 116,120 ---- private final TestCaseSigner signer; ! private static final String TESTDATA = "Here we go again"; private static final String ALIASEVE = "neu://eve@test"; |