Browse Source

Remove a test doing nothing

Closes gh-5673
pull/5673/merge
Johnny Lim 10 years ago committed by Phillip Webb
parent
commit
10a73381e6
  1. 6
      spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/filter/FilterAnnotationsTests.java

6
spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/filter/FilterAnnotationsTests.java

@ -76,11 +76,7 @@ public class FilterAnnotationsTests { @@ -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);

Loading…
Cancel
Save