Replies: 2 comments 3 replies
-
You can run a separate |
Beta Was this translation helpful? Give feedback.
2 replies
-
I wonder, if JUnit's Console Launcher could register a shutdown hook via Runtime::addShutdownHook and perform "manouvers of the final moment", such as to close contexts, write reports, free resources, ... and be good? 🤔 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a bunch of "tests vintages" that need to run in parallel to optimize the execution time.
Our environment is a little complicated. The simplest solution is to use the junit console. but some test class really needs to be executed in a forked jvm.
It's possible to run test classes in forked jvm via
ant junit
andmaven surefire
but didn't found a way viajunit console standalone
.Is there a way to run the tests in a separate JVM using the console ?
sources
Beta Was this translation helpful? Give feedback.
All reactions