[style] Test conventions
This commit is contained in:
parent
8bcee58b98
commit
8334dd1854
1 changed files with 3 additions and 3 deletions
|
@ -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...");
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue