Uses of Class
org.junit.runner.manipulation.Filter

Packages that use Filter
junit.framework Provides JUnit v3.x core classes. 
org.junit.internal.requests Provides implementations of Request
org.junit.internal.runners Provides implementations of Runner 
org.junit.runner Provides classes used to describe, collect, run and analyze multiple tests. 
org.junit.runner.manipulation Provides classes to filter or sort tests. 
org.junit.runners Provides standard Runner implementations. 
 

Uses of Filter in junit.framework
 

Methods in junit.framework with parameters of type Filter
 void JUnit4TestAdapter.filter(Filter filter)
           
 

Uses of Filter in org.junit.internal.requests
 

Constructors in org.junit.internal.requests with parameters of type Filter
FilterRequest(Request classRequest, 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
 void JUnit4ClassRunner.filter(Filter filter)
          Deprecated.  
 void JUnit38ClassRunner.filter(Filter filter)
           
 

Uses of Filter in org.junit.runner
 

Methods in org.junit.runner with parameters of type Filter
 Request Request.filterWith(Filter filter)
          Returns a Request that only contains those tests that should run when filter is applied
 

Uses of Filter in org.junit.runner.manipulation
 

Fields in org.junit.runner.manipulation declared as Filter
static Filter Filter.ALL
          A null Filter that passes all tests through.
 

Methods in org.junit.runner.manipulation that return Filter
static Filter Filter.matchMethodDescription(Description desiredDescription)
          Returns a Filter that only runs the single method described by desiredDescription
 

Methods in org.junit.runner.manipulation with parameters of type Filter
 void Filterable.filter(Filter filter)
          Remove tests that don't pass the parameter filter.
 

Uses of Filter in org.junit.runners
 

Methods in org.junit.runners with parameters of type Filter
 void ParentRunner.filter(Filter filter)