-
Notifications
You must be signed in to change notification settings - Fork 1
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
Th2 3673 common need to change the filter #201
base: master
Are you sure you want to change the base?
Conversation
...t/kotlin/com/exactpro/th2/common/schema/filter/strategy/impl/TestAnyMessageFilterStrategy.kt
Outdated
Show resolved
Hide resolved
arguments(simpleMessageBuilder("test", Direction.FIRST, "test-alias"), true), | ||
arguments(simpleMessageBuilder("test", Direction.SECOND, "test-alias"), true), | ||
arguments(simpleMessageBuilder("test", Direction.FIRST, "test-wrong"), true), | ||
arguments(simpleMessageBuilder("test", Direction.SECOND, "test-alias-wrong"), false), |
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 mean this case, here we can see:
- simpleMessageBuilder - the base structure of the target message
- "test", SECOND, "test-alias-wrong" - arguments
Could you please write others methods in a similar style
import org.mockito.kotlin.mock | ||
import org.mockito.kotlin.never | ||
import org.mockito.kotlin.verify | ||
import org.mockito.kotlin.* |
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.
Please avoid multiple imports. You can configure idea for that
No description provided.