Skip to content

Commit

Permalink
add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hantmac committed Dec 2, 2024
1 parent 68ed12b commit f0caf8c
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ public void testGetTypeFunction() {
assertTypeHandler("Nullable(Float64)", Float64Handler.class, true);
assertTypeHandler("String", StringHandler.class, false);
assertTypeHandler("Nullable(String)", StringHandler.class, true);
assertTypeHandler("Date", StringHandler.class, false);
assertTypeHandler("Nullable(Date)", StringHandler.class, true);
assertTypeHandler("DateTime", StringHandler.class, false);
assertTypeHandler("Nullable(DateTime)", StringHandler.class, true);
assertTypeHandler("DateTime64", StringHandler.class, false);
assertTypeHandler("Nullable(DateTime64)", StringHandler.class, true);
assertTypeHandler("Timestamp", StringHandler.class, false);
assertTypeHandler("Nullable(Timestamp)", StringHandler.class, true);
assertTypeHandler("Date", DateHandler.class, false);
assertTypeHandler("Nullable(Date)", DateHandler.class, true);
assertTypeHandler("DateTime", TimestampHandler.class, false);
assertTypeHandler("Nullable(DateTime)", TimestampHandler.class, true);
assertTypeHandler("DateTime64", TimestampHandler.class, false);
assertTypeHandler("Nullable(DateTime64)", TimestampHandler.class, true);
assertTypeHandler("Timestamp", TimestampHandler.class, false);
assertTypeHandler("Nullable(Timestamp)", TimestampHandler.class, true);
assertTypeHandler("Array(String)", StringHandler.class, false);
assertTypeHandler("Nullable(Array(Int32))", StringHandler.class, true);
assertTypeHandler("Struct", StringHandler.class, false);
Expand Down

0 comments on commit f0caf8c

Please sign in to comment.