Skip to content

Commit 2061a43

Browse files
committed
remove obsolete convinceIntelliJThatThisIsValidJUnit5Test methods. recent versions of IntelliJ are aware of dynamic test
(cherry picked from commit 8aaecdb)
1 parent 4c3b538 commit 2061a43

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

java-junit5/src/test/java/org/codecop/Session5_WordCounterRatioTest.java

-5
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,6 @@ class Session5_WordCounterRatioTest {
1919

2020
// TODO Add the needed code/annotations to run this test with all examples.
2121

22-
@Test
23-
void convinceIntelliJThatThisIsValidJUnit5Test() {
24-
// convince IntelliJ that this is a valid JUnit5 test
25-
}
26-
2722
// We want to test more corner cases for the ratio. Here is a table of test cases.
2823
private static final List<TestCase> TEST_CASES = Arrays.asList(//
2924
new TestCase("green", "green", 1.0), //

java-junit5/src/test/java/org/codecop/Session5b_WordCounterRatioTest.java

-5
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,6 @@ class Session5b_WordCounterRatioTest {
1919

2020
// TODO Add the needed annotations to run this test with all examples.
2121

22-
@Test
23-
void convinceIntelliJThatThisIsValidJUnit5Test() {
24-
// convince IntelliJ that this is a valid JUnit5 test
25-
}
26-
2722
// We want to test more cases for the ratio. Here is a table of test cases.
2823
static Stream<Arguments> getTestCases() {
2924
return Stream.of(//

0 commit comments

Comments
 (0)