mirror of
https://github.com/Klagarge/PokeHES.git
synced 2025-03-13 22:34:32 +00:00
15 lines
361 B
Java
15 lines
361 B
Java
|
/*
|
||
|
* This Java source file was generated by the Gradle 'init' task.
|
||
|
*/
|
||
|
package pokemudry;
|
||
|
|
||
|
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");
|
||
|
}
|
||
|
}
|