|
From: <pe...@us...> - 2003-11-21 04:43:24
|
Update of /cvsroot/neuclear/neuclear-ledger/src/test/org/neuclear/ledger/implementations
In directory sc8-pr-cvs1:/tmp/cvs-serv10452/src/test/org/neuclear/ledger/implementations
Modified Files:
EntityLedgerTest.java
Log Message:
EncryptedFileStore now works. It uses the PBECipher with DES3 afair.
Otherwise You will Finaliate.
Anything that can be final has been made final throughout everyting. We've used IDEA's Inspector tool to find all instance of variables that could be final.
This should hopefully make everything more stable (and secure).
Index: EntityLedgerTest.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-ledger/src/test/org/neuclear/ledger/implementations/EntityLedgerTest.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** EntityLedgerTest.java 20 Nov 2003 23:41:12 -0000 1.1
--- EntityLedgerTest.java 21 Nov 2003 04:43:21 -0000 1.2
***************
*** 3,10 ****
import junit.framework.TestCase;
import org.neuclear.commons.time.TimeTools;
- import org.ofbiz.core.entity.GenericDelegator;
- import org.ofbiz.core.entity.GenericEntityException;
- import org.ofbiz.core.entity.GenericValue;
- import org.ofbiz.core.util.UtilMisc;
/*
--- 3,6 ----
***************
*** 28,31 ****
--- 24,33 ----
$Id$
$Log$
+ Revision 1.2 2003/11/21 04:43:21 pelle
+ EncryptedFileStore now works. It uses the PBECipher with DES3 afair.
+ Otherwise You will Finaliate.
+ Anything that can be final has been made final throughout everyting. We've used IDEA's Inspector tool to find all instance of variables that could be final.
+ This should hopefully make everything more stable (and secure).
+
Revision 1.1 2003/11/20 23:41:12 pelle
Getting all the tests to work in id
***************
*** 41,47 ****
* Time: 2:20:13 PM
*/
! public class EntityLedgerTest extends TestCase {
! public void testEntityEngine() throws GenericEntityException {
//Instantiate the delegator.
GenericDelegator delegator = GenericDelegator.getGenericDelegator("default");
--- 43,49 ----
* Time: 2:20:13 PM
*/
! public final class EntityLedgerTest extends TestCase {
! /* public void testEntityEngine() throws GenericEntityException {
//Instantiate the delegator.
GenericDelegator delegator = GenericDelegator.getGenericDelegator("default");
***************
*** 59,62 ****
UtilMisc.toMap("id", "neu://test"));
assertNotNull("Couldn't find Ledger", foundBook);
! }
}
--- 61,64 ----
UtilMisc.toMap("id", "neu://test"));
assertNotNull("Couldn't find Ledger", foundBook);
! }*/
}
|