#BAEL-7157: add one extra method

This commit is contained in:
hmdrz 2023-11-09 11:21:54 +03:30
parent 5b596e0c49
commit f33372e091
2 changed files with 9 additions and 0 deletions
testing-modules/junit-5-advanced/src/test/java/com/baeldung/testsuite

@ -10,4 +10,8 @@ public class ClassOneUnitTest {
Assertions.assertTrue(true);
}
@Test
public void whenFalse_thenFalse() {
Assertions.assertFalse(false);
}
}

@ -8,4 +8,9 @@ public class ClassTwoUnitTest {
public void whenTrue_thenTrue() {
Assertions.assertTrue(true);
}
@Test
public void whenFalse_thenFalse() {
Assertions.assertFalse(false);
}
}