-
Notifications
You must be signed in to change notification settings - Fork 1k
Convert ReferenceMatcherTest to groovy #14905
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
Convert ReferenceMatcherTest to groovy #14905
Conversation
muzzle/src/test/java/io/opentelemetry/javaagent/tooling/muzzle/ReferenceMatcherTest.java
Outdated
Show resolved
Hide resolved
muzzle/src/test/java/io/opentelemetry/javaagent/tooling/muzzle/ReferenceMatcherTest.java
Outdated
Show resolved
Hide resolved
} | ||
|
||
@ParameterizedTest | ||
@CsvSource({ |
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.
did you consider using @MethodSource
so you wouldn't need to decode the strings?
} | ||
|
||
@ParameterizedTest | ||
@CsvSource({ |
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.
did you consider using @MethodSource so you wouldn't need to decode the strings?
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.
good idea - done!
…/ReferenceMatcherTest.java Co-authored-by: Lauri Tulmin <[email protected]>
9b6f726
to
f125132
Compare
Part of #14803