|
From: <pe...@us...> - 2003-12-31 00:39:08
|
Update of /cvsroot/neuclear/neuclear-ledger/src/test/org/neuclear/ledger
In directory sc8-pr-cvs1:/tmp/cvs-serv2351/src/test/org/neuclear/ledger
Modified Files:
LedgerTest.java
Log Message:
Added Drivers for handling different Database dialects in the entity model.
Added Statement pattern to ledger, simplifying the statement writing process.
Index: LedgerTest.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-ledger/src/test/org/neuclear/ledger/LedgerTest.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** LedgerTest.java 26 Dec 2003 22:50:52 -0000 1.8
--- LedgerTest.java 31 Dec 2003 00:39:05 -0000 1.9
***************
*** 25,28 ****
--- 25,32 ----
* $Id$
* $Log$
+ * Revision 1.9 2003/12/31 00:39:05 pelle
+ * Added Drivers for handling different Database dialects in the entity model.
+ * Added Statement pattern to ledger, simplifying the statement writing process.
+ *
* Revision 1.8 2003/12/26 22:50:52 pelle
* Mainly fixes to SQLLedger to support the schema generated by the new EntityModel
***************
*** 121,131 ****
*/
public abstract class LedgerTest extends TestCase {
! protected final String account1 = "Bob";
! protected final String account2 = "Alice";
public LedgerTest(final String s) throws LowlevelLedgerException, UnknownLedgerException, SQLException, NamingException, IOException, NeuClearException {
super(s);
! ledger = new SQLLedger(new TestCaseXAConnectionSource(), "neu://superbux/reserve");
}
--- 125,135 ----
*/
public abstract class LedgerTest extends TestCase {
! protected final String account1 = "neu://test/bob";
! protected final String account2 = "nru://test/alice";
public LedgerTest(final String s) throws LowlevelLedgerException, UnknownLedgerException, SQLException, NamingException, IOException, NeuClearException {
super(s);
! ledger = new SQLLedger(new TestCaseXAConnectionSource(), "neu://test/bux");
}
|