|
From: <pe...@us...> - 2004-01-14 06:42:41
|
Update of /cvsroot/neuclear/neuclear-xmlsig/src/test/org/neuclear/xml/c14 In directory sc8-pr-cvs1:/tmp/cvs-serv29428/src/test/org/neuclear/xml/c14 Modified Files: CanonicalizationTest.java Log Message: Got rid of the verifyXXX() methods Index: CanonicalizationTest.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-xmlsig/src/test/org/neuclear/xml/c14/CanonicalizationTest.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CanonicalizationTest.java 21 Nov 2003 04:44:31 -0000 1.3 --- CanonicalizationTest.java 14 Jan 2004 06:42:38 -0000 1.4 *************** *** 7,10 **** --- 7,13 ---- * $Id$ * $Log$ + * Revision 1.4 2004/01/14 06:42:38 pelle + * Got rid of the verifyXXX() methods + * * Revision 1.3 2003/11/21 04:44:31 pelle * EncryptedFileStore now works. It uses the PBECipher with DES3 afair. *************** *** 64,67 **** --- 67,71 ---- import org.dom4j.io.SAXReader; import org.neuclear.xml.xmlsec.XMLSecTools; + import org.neuclear.xml.xmlsec.XMLSecurityException; import java.io.*; *************** *** 85,93 **** } */ ! public final void testMerlin() throws IOException, DocumentException { runDirectoryTest("src/testdata/merlin-xmldsig-eight"); } ! public final void runDirectoryTest(final String path) throws DocumentException, IOException, FileNotFoundException { final File dir=new File(path).getAbsoluteFile(); if (!dir.exists()) { --- 89,97 ---- } */ ! public final void testMerlin() throws IOException, DocumentException, XMLSecurityException { runDirectoryTest("src/testdata/merlin-xmldsig-eight"); } ! public final void runDirectoryTest(final String path) throws DocumentException, IOException, FileNotFoundException, XMLSecurityException { final File dir=new File(path).getAbsoluteFile(); if (!dir.exists()) { |