[style] Test conventions

This commit is contained in:
Bigeon Emmanuel 2024-02-10 17:49:38 +01:00
parent 8bcee58b98
commit 8334dd1854

View file

@ -5,10 +5,10 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Test;
/** Unit test for simple App. */
public class AppTest {
class AppTest {
/** Rigorous Test :-) */
@Test
public void shouldAnswerWithTrue() {
assertTrue(true);
void testPlaceholder() {
assertTrue(true, "It should be true that true is true...");
}
}