Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mnhock committed Jun 23, 2024
1 parent d9c1d2e commit 9d793d5
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,30 +43,30 @@ void shouldIdentifyClassesMetaAnnotatedWithTestOrParameterizedTest() {
private static final class TestExample {

@Test
void testMethod() {
void should() {
}
}

private static final class ParameterizedTestExample {

@ParameterizedTest
@EmptySource
void parameterizedTestMethod(String empty) {
void should(String empty) {
}
}

private static class MetaTestExample {

@TestAnnotation
void metaTestMethod() {
void should() {
}
}

private static final class MetaParameterizedTestExample {

@ParameterizedTestAnnotation
@EmptySource
void metaParameterizedTestMethod(String empty) {
void should(String empty) {
}
}

Expand Down

0 comments on commit 9d793d5

Please sign in to comment.