Home | History | Annotate | Download | only in support

Lines Matching refs:Filter

23 import org.junit.runner.manipulation.Filter;
78 public void filter(Filter filter) throws NoTestsRemainException {
79 mDescription = filterDescription(mDescription, filter);
156 * Recursively (preorder traversal) apply the filter to all the descriptions.
158 * @return null if the filter rejects the whole tree.
160 private static Description filterDescription(Description desc, Filter filter) {
161 if (!filter.shouldRun(desc)) { // XX: Does the filter itself do the recursion?
172 // Filter all subtrees, only copying them if the filter accepts them.
174 Description filteredChild = filterDescription(child, filter);
195 // Filter to only 'public void' signatures.