I have a test for a DAO class, I use DBUnit to create and populate the database (using an in-memory derby).
I\'m trying to write a Java EE 6 application using JPA but without using Hibernate or Spring. I used Netbeans to generate the JPA classes, and I created the tables in Postgres, but I am not able to ru
I\'m testing datasource layer using dbunit, junit, liquibase, hsqldb. I\'m using in memory-state of hsqldb.
Here\'s the scanario: I am working on a DAO object which uses hibernate criteria API to form a number of complicated queries to perform certain tasks on the database (keyword search across multiple f
I use Oracle 11 with dbunit. The DatabaseSequenceFilter initialization is about 20 minutes. ITableFilter filter;
I\'m using dbUnit to put test data in DB with dataset like <dataset> <TABLE_1 PRIMARY_KEY_COL=\"10000001\" OTHER_COL=\"Some Text\"/>
I export test data into a versioned project. To keep diffs small, I\'d like to order the exported XML data by primary 开发者_运维技巧key.
It looks like DbUnit is using JDBC metadata to determine the primary key fields and constructing delete statement using th开发者_如何转开发ose field:
I\'m testing a JPA/Hibernate application with DBunit and Oracle 10g. When I start my test I load to the database 25 rows with an identifier.
I have an application with ca. 200 tables and approx. 20 java server / batch programs. I have a pretty good canned suite of System tests.