Make test public

This commit is contained in:
Oystein Kristoffer Tveit 2021-02-17 19:34:47 +01:00
parent 8a3ef2fafb
commit 6d93c4cbb5
1 changed files with 2 additions and 2 deletions

View File

@ -5,11 +5,11 @@ import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.DisplayName;
class MainTest {
public class MainTest {
@Test
@DisplayName("Temp Test")
void tempTest() {
public void tempTest() {
assertEquals(1, 1);
}