Skip to content

Commit 5eb1b9c

Browse files
committed
Print stacktrace on exception
1 parent 34aa21c commit 5eb1b9c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

java/src/test/java/com/genexus/util/TestDateMethods.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ public void testCtotex() {
5353
testDate2 = localUtil.ctotex("2023-01-01T00:00:00", 0);
5454
testDate3 = localUtil.ctotex("2200-12-31T00:00:00.000", 0);
5555
} catch (Exception e) {
56+
e.printStackTrace();
5657
Assert.fail(e.getMessage());
5758
}
5859

@@ -72,6 +73,7 @@ public void testCtotex() {
7273
testDate2 = localUtil.ctotex("30-01-01T00", 0);
7374
testDate3 = localUtil.ctotex("31-12-31T00:00", 0);
7475
} catch (Exception e) {
76+
e.printStackTrace();
7577
Assert.fail(e.getMessage());
7678
}
7779

0 commit comments

Comments
 (0)