Uses of Class
org.junit.runner.manipulation.Filter
Packages that use Filter
Package
Description
Provides JUnit v3.x core classes.
Provides classes used to describe, collect, run and analyze multiple tests.
Provides standard
Runner
implementations.-
Uses of Filter in junit.framework
Methods in junit.framework with parameters of type Filter -
Uses of Filter in org.junit.experimental.categories
Subclasses of Filter in org.junit.experimental.categoriesMethods in org.junit.experimental.categories that return FilterModifier and TypeMethodDescriptionprotected Filter
ExcludeCategories.createFilter
(List<Class<?>> categories) Creates aFilter
which is only passed by tests that are not categorized with any of the specified categories.protected Filter
IncludeCategories.createFilter
(List<Class<?>> categories) Creates aFilter
which is only passed by tests that are categorized with any of the specified categories. -
Uses of Filter in org.junit.runner
Methods in org.junit.runner that return FilterModifier and TypeMethodDescriptionFilterFactory.createFilter
(FilterFactoryParams params) Creates aFilter
given aFilterFactoryParams
argument.Methods in org.junit.runner with parameters of type FilterModifier and TypeMethodDescriptionRequest.filterWith
(Filter filter) Returns a Request that only contains those tests that should run whenfilter
is applied -
Uses of Filter in org.junit.runner.manipulation
Fields in org.junit.runner.manipulation declared as FilterModifier and TypeFieldDescriptionstatic final Filter
Filter.ALL
A nullFilter
that passes all tests through.Methods in org.junit.runner.manipulation that return FilterModifier and TypeMethodDescriptionReturns a new Filter that accepts the intersection of the tests accepted by this Filter andsecond
static Filter
Filter.matchMethodDescription
(Description desiredDescription) Returns aFilter
that only runs the single method described bydesiredDescription
Methods in org.junit.runner.manipulation with parameters of type Filter -
Uses of Filter in org.junit.runners
Methods in org.junit.runners with parameters of type Filter