diff --git a/src/test/java/com/enofex/taikai/test/JUnit5DescribedPredicatesTest.java b/src/test/java/com/enofex/taikai/test/JUnit5DescribedPredicatesTest.java index bae9679..78ebe5c 100644 --- a/src/test/java/com/enofex/taikai/test/JUnit5DescribedPredicatesTest.java +++ b/src/test/java/com/enofex/taikai/test/JUnit5DescribedPredicatesTest.java @@ -43,7 +43,7 @@ void shouldIdentifyClassesMetaAnnotatedWithTestOrParameterizedTest() { private static final class TestExample { @Test - void testMethod() { + void should() { } } @@ -51,14 +51,14 @@ private static final class ParameterizedTestExample { @ParameterizedTest @EmptySource - void parameterizedTestMethod(String empty) { + void should(String empty) { } } private static class MetaTestExample { @TestAnnotation - void metaTestMethod() { + void should() { } } @@ -66,7 +66,7 @@ private static final class MetaParameterizedTestExample { @ParameterizedTestAnnotation @EmptySource - void metaParameterizedTestMethod(String empty) { + void should(String empty) { } }