junit-interface icon indicating copy to clipboard operation
junit-interface copied to clipboard

Implementation of sbt's test interface for JUnit

Results 17 junit-interface issues
Sort by recently updated
recently updated
newest added

I have a project where we have lots of unit tests written. We've recently upgraded to sbt 0.13 and now our unit tests don't run. If I add the following...

I found `junit-interface` 0.13.3 already release, but the correspondence between `junit-interface` 0.13.3 and JUnit4 version is not updated in the `README.md`

# Problem Cucumber tests with [Data Tables](https://en.wikipedia.org/wiki/Cucumber_(software)#Scenarios) will pass with failing examples as long as the first example passes. This happens because all the examples in have the same fully...

Cucumber tests with Data Tables will pass with failing examples as long as the first example passes. This happens because all the examples have the same fully qualified name that...

This is just meant to be a duplicate of https://github.com/sbt/junit-interface/issues/35 but for SBT 1.3, and putting SBT 1.3 in the title of the issue to help anyone searching on the...

I have a project with a dependency on Spring Batch Test 4.1.0-RELEASE, which brings in Spring Test 5.1.2-RELEASE with it. If I include junit-interface on the classpath, and plain dependencies...

Hi, I am trying to use parallel test execution jenkins plugin with sbt but unable to do grouping of test cases do we have any way of achieving it?

I have a Java project that I'm building with SBT. The only Scala code is in the tests. I need to run some slow tests in a separate process, with...

At the moment, https://github.com/sbt/junit-interface/blob/master/src/main/java/com/novocode/junit/JUnitRunner.java#L123 loads all the test classes in the same classloader. Depending on the amount of tests, this becomes a problem, because class definitions get loaded multiple times,...

This test is not picked up: @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = {"classpath:test-context.xml"}) public class MyTest { but if @RunWith is commented out the test is picked up (but obviously does not work...