BATCH-1546: enable integration tests with Oracle

This commit is contained in:
dsyer
2010-04-05 16:22:08 +00:00
parent 6473473d78
commit f38c05567a
17 changed files with 102 additions and 31 deletions

View File

@@ -97,9 +97,9 @@ public class CustomerFilterJobFunctionalTests {
});
Map<String, Object> step1Execution = this.getStepExecution(jobExecution, "uploadCustomer");
assertEquals(new Long(4), step1Execution.get("READ_COUNT"));
assertEquals(new Long(1), step1Execution.get("FILTER_COUNT"));
assertEquals(new Long(3), step1Execution.get("WRITE_COUNT"));
assertEquals("4", step1Execution.get("READ_COUNT").toString());
assertEquals("1", step1Execution.get("FILTER_COUNT").toString());
assertEquals("3", step1Execution.get("WRITE_COUNT").toString());
}