Dominik Dorn

Results 91 comments of Dominik Dorn

any updates on this? I'm currently implementing a Amazon SNS endpoint for a customer where we have to fetch certificates every time we receive a request (to verify its content)...

did you include the various runners? I have those in my build.sbt // JUnit 5 "org.junit.platform" % "junit-platform-runner" % "1.0.0-M2" % "test", "org.junit.jupiter" % "junit-jupiter-engine" % "5.0.0-M2" % "test", "org.junit.vintage"...

put these dependencies into your build.sbt "junit" % "junit" % "4.12" % "test", "org.junit.platform" % "junit-platform-runner" % "1.0.0-M2" % "test", "org.junit.jupiter" % "junit-jupiter-engine" % "5.0.0-M2" % "test", "org.junit.vintage" % "junit-vintage-engine"...

@wsargent / @gmethvin I could start working on that now. Where should I integrate it? I would suggest to create a additional module framework/src/play-test-junit5 where the necessary classes for JUnit5...

@wsargent I'm not sure I understand you correctly. I can provide a PR to the sbt/junit-interface to recognize JUnit 5 tests as well, but this issue is about adjusting Plays...

its no big deal if that is not possible, I'm just reporting the things that are not migrated when migrating service by service now.

could we use this to make cross-test shared layers, e.g. one db connection pool or testcontainers, over multiple test-classes (.scala files) work? JUnit has this with JUnitExtension + @ExtendWith .....

so you say because the JVM is supposed to inline "a" above, that the "a" used in provideService has to be the same? not sure its working that way, but...

After digging a little more into this, I think the following changes would need to be made to make an effect "stop/pause" (not yet sure how to continue it later...