Uses of Class
org.junit.runner.manipulation.Filter
-
Packages that use Filter Package Description junit.framework Provides JUnit v3.x core classes.org.junit.experimental.categories org.junit.internal.requests Provides implementations ofRequest.org.junit.internal.runners Provides implementations ofRunnerorg.junit.runner Provides classes used to describe, collect, run and analyze multiple tests.org.junit.runner.manipulation org.junit.runners Provides standardRunnerimplementations. -
-
Uses of Filter in junit.framework
Methods in junit.framework with parameters of type Filter Modifier and Type Method Description voidJUnit4TestAdapter. filter(Filter filter) -
Uses of Filter in org.junit.experimental.categories
Subclasses of Filter in org.junit.experimental.categories Modifier and Type Class Description static classCategories.CategoryFilterMethods in org.junit.experimental.categories that return Filter Modifier and Type Method Description protected FilterExcludeCategories. createFilter(java.util.List<java.lang.Class<?>> categories)Creates aFilterwhich is only passed by tests that are not categorized with any of the specified categories.protected FilterIncludeCategories. createFilter(java.util.List<java.lang.Class<?>> categories)Creates aFilterwhich is only passed by tests that are categorized with any of the specified categories. -
Uses of Filter in org.junit.internal.requests
Constructors in org.junit.internal.requests with parameters of type Filter Constructor Description FilterRequest(Request request, Filter filter)Creates a filtered Request -
Uses of Filter in org.junit.internal.runners
Methods in org.junit.internal.runners with parameters of type Filter Modifier and Type Method Description voidJUnit38ClassRunner. filter(Filter filter)voidJUnit4ClassRunner. filter(Filter filter)Deprecated. -
Uses of Filter in org.junit.runner
Methods in org.junit.runner that return Filter Modifier and Type Method Description FilterFilterFactory. createFilter(FilterFactoryParams params)Creates aFiltergiven aFilterFactoryParamsargument.Methods in org.junit.runner with parameters of type Filter Modifier and Type Method Description RequestRequest. filterWith(Filter filter)Returns a Request that only contains those tests that should run whenfilteris applied -
Uses of Filter in org.junit.runner.manipulation
Fields in org.junit.runner.manipulation declared as Filter Modifier and Type Field Description static FilterFilter. ALLA nullFilterthat passes all tests through.Methods in org.junit.runner.manipulation that return Filter Modifier and Type Method Description FilterFilter. intersect(Filter second)Returns a new Filter that accepts the intersection of the tests accepted by this Filter andsecondstatic FilterFilter. matchMethodDescription(Description desiredDescription)Returns aFilterthat only runs the single method described bydesiredDescriptionMethods in org.junit.runner.manipulation with parameters of type Filter Modifier and Type Method Description voidFilterable. filter(Filter filter)Remove tests that don't pass the parameterfilter.FilterFilter. intersect(Filter second)Returns a new Filter that accepts the intersection of the tests accepted by this Filter andsecond -
Uses of Filter in org.junit.runners
Methods in org.junit.runners with parameters of type Filter Modifier and Type Method Description voidParentRunner. filter(Filter filter)
-