Changeset 3633
- Timestamp:
- Aug 6, 2007, 9:36:36 AM (16 years ago)
- Location:
- trunk/src/test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/test/TestDirty.java
r3626 r3633 70 70 ok = ok && (id3 == id4); 71 71 72 TestReporter.test_list(3);72 ok = ok && TestReporter.test_list(caseInsensitive ? 3 : 4); 73 73 74 74 // Test import raw data -
trunk/src/test/TestReporter.java
r3626 r3633 108 108 } 109 109 110 static voidtest_list(int expectedResults)110 static boolean test_list(int expectedResults) 111 111 { 112 112 DbControl dc = null; … … 133 133 ex.printStackTrace(); 134 134 ok = false; 135 } 136 finally 137 { 138 if (dc != null) dc.close(); 139 } 135 return false; 136 } 137 finally 138 { 139 if (dc != null) dc.close(); 140 } 141 return true; 140 142 } 141 143
Note: See TracChangeset
for help on using the changeset viewer.