Starting Window

This commit is contained in:
2023-02-25 13:55:35 +01:00
parent 15fe864d5a
commit 4055f12fba
4 changed files with 34 additions and 18 deletions

View File

@ -4,11 +4,9 @@
package school_project;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class AppTest {
@Test void appHasAGreeting() {
App classUnderTest = new App();
assertNotNull(classUnderTest.getGreeting(), "app should have a greeting");
Controller classUnderTest = new Controller();
}
}