-
Notifications
You must be signed in to change notification settings - Fork 8
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
Adding useJUnitPlatform() #34
Conversation
@oleg-nenashev / @tomakehurst Please check this out - Because of this change and the fact that the tests are actually now executing, some of the tests fail and need to be fixed. I don't know how to fix them, but they were never actually being executed before. |
This test is failing, but only on windows with Java 11:
This test was introduced by #31 and apparently doesn't work correctly in some situations. |
@@ -63,7 +63,7 @@ public GrpcResponseDefinitionBuilder withTemplatingEnabled(boolean enabled) { | |||
|
|||
public GrpcResponseDefinitionBuilder withFixedDelay(long milliseconds) { | |||
this.delay = new FixedDelayDistribution(milliseconds); | |||
return null; | |||
return this; |
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 brought in #35 to this PR
It seems #35 will fix this |
Thanks! |
* Adding useJUnitPlatform() * GrpcResponseDefinitionBuilder.withFixedDelay returning null instead of this
Adding
useJUnitPlatform()
to thetest
stanza. As it stands, the unit tests are never actually being executed, including in your GitHub Actions CI/CD process.