public class DataProviderFilter
extends org.junit.runner.manipulation.Filter
Filter filters test methods or even single dataprovider rows of a test class which is run by
DataProviderRunner.| Constructor and Description |
|---|
DataProviderFilter(org.junit.runner.manipulation.Filter filter)
Creates a new
DataProviderFilter using the textual Filter.describe() of supplied Filter
to determine if a test method should run or not. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
describe() |
boolean |
shouldRun(org.junit.runner.Description description) |
public DataProviderFilter(org.junit.runner.manipulation.Filter filter)
DataProviderFilter using the textual Filter.describe() of supplied Filter
to determine if a test method should run or not. If given filter description can not be parsed, request
for shouldRun(Description) are just forwarded to it.filter - from which the Description is parsed and used for filtering