-
Notifications
You must be signed in to change notification settings - Fork 5
Bugfix/coverage key value parameter #90
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
Conversation
src/main/java/org/utplsql/api/db/DynamicParameterListBuilder.java
Outdated
Show resolved
Hide resolved
public class DynamicParameterListTest { | ||
|
||
@Test | ||
void call_with_three_different_types() throws SQLException { |
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.
You know if you which to create human readable name of a test you can use @Display
annotation which will be displayed in the results instead of the method name
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.
I know, the upside of this approach is that I know immediately what the test does without first having to look for the @Display
content.
It's a very good addition, though.
When empty TypeMapping parameter is passed, the java-api should assure it is passed to utPLSQL-api as NULL so the default TypeMapping can kick in.
Fixes utPLSQL/utPLSQL-cli#162
Adds some tests, too, and hides TypeMapper from public. Nothing but the java-api should mess with these internals.