JUnitParams icon indicating copy to clipboard operation
JUnitParams copied to clipboard

Parameterised tests that don't suck

Results 42 JUnitParams issues
Sort by recently updated
recently updated
newest added

I am having trouble executing single test method in Android Studio. When I try to run an single test case in Android Studio, it runs no cases.

in versions 1.1.0 and 1.1.1 the method ParameterisedTestMethodRunner.findChildForParams() may not define the "Description" object, causing the maven build to crash (maven-surefire-plugin + surefire-junit47 provider). Version 1.0.6 does not have this...

When building **junitparams** with **junit:4.12**, the tests passed. But when building **junitparams** with **junit:4.13.1**, some tests failed. - **junit:4.12** ``` [INFO] Scanning for projects... [INFO] [INFO] ---------------------< pl.pragmatists:JUnitParams >--------------------- [INFO]...

Added throwing illegalStateException as if it is not added then this error is masked by RuntimeException with message "Cannot find invoker for the parameterised method. Using wrong JUnit version?" which...

The Annotation[] array fAnnotations ( -> org.junit.runner.Description.fAnnotations) we need to be not null for failure reporting but it is unfortunately null when using junitparams parameterized junit 4.12 testcases. We have...

Example: run `mvn test` in JUnitParams project with following configuration: ``` org.apache.maven.plugins maven-surefire-plugin 2.18.1 filesystem classesAndMethods false 16 false 0 0 0 true **/SubclassTest.java **/Samples_* ``` This should give total...

bug
help wanted

Hi, Firstly, congrats for this great work. We have been using it for quite a long time and we haven't had issues. Now, we would like to use it in...

I want to continue using JUnitParams but I am working on a codebase which insists on the use of JUnit Jupiter. Please add an equivalent of `JUnitParamsRunner` which works with`...

A `Filter` that is applied to a `JUnitParamsRunner` gets passed different `Description` instances than the runner actually uses. ### Example Running the `main` method from the following example demonstrates the...