sbt-jupiter-interface
sbt-jupiter-interface copied to clipboard
Implementation of SBT's test interface for JUnit Jupiter
Because this repository already lives under the GitHub sbt organization and also in preparation for an automatic release process from CI via tagging. /cc @mkurz
Set up an automatic release process via GitHub actions so with just pushing a tag a release gets published to maven central automatically. ### Tasks - [ ] Add release...
JUnit 5.10.0 = Platform 1.10.0 + Jupiter 5.10.0 + Vintage 5.10.0
I'm attempting to run test suites using `sbt test`, however, I am unable to resolve a runtime exception from the dispatcher. I've created the below repository to replicate the issue....
```txt org.junit.platform.commons.JUnitException: TestEngine with ID 'cucumber' failed to discover tests at org.junit.platform.launcher.core.EngineDiscoveryOrchestrator.discoverEngineRoot(EngineDiscoveryOrchestrator.java:160) at org.junit.platform.launcher.core.EngineDiscoveryOrchestrator.discoverSafely(EngineDiscoveryOrchestrator.java:132) at org.junit.platform.launcher.core.EngineDiscoveryOrchestrator.discover(EngineDiscoveryOrchestrator.java:107) at org.junit.platform.launcher.core.EngineDiscoveryOrchestrator.discover(EngineDiscoveryOrchestrator.java:78) at org.junit.platform.launcher.core.DefaultLauncher.discover(DefaultLauncher.java:110) at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:86) at org.junit.platform.launcher.core.DefaultLauncherSession$DelegatingLauncher.execute(DefaultLauncherSession.java:86) at org.junit.platform.launcher.core.SessionPerRequestLauncher.execute(SessionPerRequestLauncher.java:53) at net.aichler.jupiter.internal.JupiterRunner$JupiterTaskExecutor.execute(JupiterRunner.java:185) at net.aichler.jupiter.internal.JupiterRunner$WithCustomProperties.execute(JupiterRunner.java:239)...
Hi, I tried to execute the test interfaces from https://junit.org/junit5/docs/current/user-guide/#writing-tests-test-interfaces-and-default-methods, but I got an exception: ``` [info] Test com.example.StringTests#returnsNegativeNumberWhenComparedToLargerValue() started [error] Test com.example.StringTests failed: java.lang.RuntimeException: Test class com.example.ComparableContract is not...
``` WARNING: TestEngine with ID 'junit-jupiter' failed to execute tests org.junit.platform.commons.JUnitException: Error executing tests for engine junit-jupiter at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54) at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:170) at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:154) at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:90) at net.aichler.jupiter.internal.JupiterRunner$JupiterTaskExecutor.execute(JupiterRunner.java:185) at net.aichler.jupiter.internal.JupiterRunner$WithCustomProperties.execute(JupiterRunner.java:239) at...
I would like to use your library with [Bloop](https://github.com/scalacenter/bloop) to run unit tests. Bloop uses virtually the same code as SBT to identify unit tests but it doesn't have the...
Once nice feature of JUnit 5 is overriding the outputs of test Method names with more human friendly `@DisplayName` annotation. Seemingly the test output does not pick up the test...
when I use this plugin in our project. I got the error trace below: > **java.util.ServiceConfigurationError:** > > **org.junit.platform.engine.TestEngine: Provider mockit.integration.junit5.JMockitTestEngine could not be instantiated** > at java.util.ServiceLoader.fail(ServiceLoader.java:232) > at...