Skip to content

Commit

Permalink
Tests clean-up
Browse files Browse the repository at this point in the history
- Replace direct prints to stdout/err by log statements
- Introduce static logger in base test
- Narrower exceptions in TestUtil
- Annotate reverse engineering code with @test @disabled
  • Loading branch information
spannm committed Mar 16, 2024
1 parent 84bdc29 commit f84a302
Show file tree
Hide file tree
Showing 5 changed files with 120 additions and 111 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ public class DatabaseImpl implements Database, DateTimeContext {
*/
private final TableCache _tableCache = new TableCache();
/**
* handler for reading/writing properteies
* handler for reading/writing properties
*/
private PropertyMaps.Handler _propsHandler;
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,6 @@ public ColumnImpl.DateTimeFactory getDateTimeFactory() {
LocalDateTime newLdt = ColumnImpl.ldtFromLocalDateDouble(
col.toDateDouble(curDate));
if (!curLdt.equals(newLdt)) {
System.out.println("FOO " + curLdt + " " + newLdt);
assertEquals(sdf.format(curLdt), sdf.format(newLdt));
}
curCal.add(Calendar.MINUTE, 30);
Expand Down
Loading

0 comments on commit f84a302

Please sign in to comment.