-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes #1429: add ITs to verify handling of "fractional ints" (allowed/non-allowed) #1432
Conversation
…ng from FindOne - test
@@ -205,52 +193,6 @@ public void findOneDocIdKey() { | |||
|
|||
@Nested | |||
@Order(3) | |||
@TestClassOrder(ClassOrderer.OrderAnnotation.class) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move this test to new, refactored InsertOneTableIntegrationTests (see below).
|
||
@Nested | ||
@Order(1) | ||
class InsertTextColumns { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved from test above since it really exercises InsertOne, not FindOne.
|
||
@Nested | ||
@Order(2) | ||
class InsertIntColumns { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And these are the new tests for #1429 .
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
What this PR does:
Adds more testing for conversion to CQL int types; specifically Integration Tests to verify end-to-end handling (basic unit tests exists but cannot fully verify scientific notation f.ex).
Which issue(s) this PR fixes:
Fixes #1429
Checklist