Update src/test/java/AppTest.java

This commit is contained in:
Nana Janashia
2020-11-01 12:00:55 +00:00
parent fa5460fa44
commit 5d8d48709e

View File

@@ -0,0 +1,16 @@
import com.example.App;
import org.junit.Test;
import static org.junit.Assert.*;
public class AppTest {
@Test
public void testApp() {
App myApp = new App();
String result = myApp.getStatus();
assertEquals("OK", result);
}
}