Remove a test doing nothing

Closes gh-5673
This commit is contained in:
Johnny Lim
2016-04-13 14:34:24 +09:00
committed by Phillip Webb
parent 99ea724c71
commit 10a73381e6

View File

@@ -76,11 +76,7 @@ public class FilterAnnotationsTests {
FilterAnnotations filterAnnotations = get(FilterByRegex.class);
assertThat(match(filterAnnotations, ExampleWithAnnotation.class)).isFalse();
assertThat(match(filterAnnotations, ExampleWithoutAnnotation.class)).isTrue();
}
@Test
public void anyMatches() throws Exception {
}
}
private FilterAnnotations get(Class<?> type) {
Filters filters = AnnotatedElementUtils.getMergedAnnotation(type, Filters.class);