Skip to content

Commit

Permalink
There is only one problem left unresolved.
Browse files Browse the repository at this point in the history
  • Loading branch information
Doom9527 committed Apr 8, 2024
1 parent 3e0b12c commit 0b1dd9a
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,10 @@ public void testGetAnyAnnotatedClasses() {
}

@Test
public void testGetAnnotatedClasses_NoClassesFound() {
public void testGetAnnotatedClassesNoClassesFound() {
Set<Class<?>> classes = scanner.getAnnotatedClasses("example", Include.class);
assertEquals(33, classes.size(), "Actual: " + classes);
int expectedNumberOfAnnotatedClasses = 33;
assertEquals(expectedNumberOfAnnotatedClasses, classes.size(), "Actual: " + classes);
classes.forEach(cls -> assertTrue(cls.isAnnotationPresent(Include.class)));

assertThrows(IllegalArgumentException.class, () -> {
Expand Down

0 comments on commit 0b1dd9a

Please sign in to comment.