-
In version 1.9.2, using data a provider which produces strings containing newline, results in strange behavior.
Exampe:
```
import com.tngtech.java.junit.dataprovider.*;
import org.junit.Test;
impo…
-
The minimum reproducible test sample would be:
```
import com.tngtech.java.junit.dataprovider.DataProvider;
import com.tngtech.java.junit.dataprovider.DataProviderRunner;
import com.tngtech.java.juni…
-
Replace the given Maven build system with Gradle
-
Small issue I've noticed in the output for paratests : the percentage is often over 100.
Exemple:
```
$ $(pwd)/vendor/bin/paratest -c $(pwd)/app/phpunit.xml.dist $(pwd)/src/
Running phpunit in 5 pro…
-
The following test fails with v1.9.0:
```
@Test
@DataProvider( "$" )
public void test( String s ) {
}
```
Exception:
```
java.lang.IllegalArgumentException: Illegal group reference
at java.uti…
-
When trying to use JGiven together with version 1.9.0 of the JUnit DataProvider, the following exception is thrown:
```
java.util.EmptyStackException
at java.util.Stack.peek(Stack.java:85)
at…
-
JUnit internally is first determining the test methods to be executed and validating as well as filtering them. At this point we already need to have the `@DataProvider` methods to be executed because…
-
Using Eclipse JUnit plugin some test cases appear under the category "Unrooted tests" instead of the expected class name, see ![Unrooted Tests Eclipse JUnit](https://f.cloud.github.com/assets/567653/2…
-
A test using a data provider (annotated with @RunWith(DataProviderRunner.class)) fails on initialization with an IllegalArgumentException when JUinit categories are used in the project (not necessary …
-
... to simplify using junit-dataprovider in languages which natively support list literals, such as
- Groovy,
- Scala,
- Xtend
- etc.