pubapptest/backend-java/src/test/java/dev/mdchap/AppTest.java

21 lines
383 B
Java
Raw Normal View History

2024-05-27 19:09:34 +00:00
package dev.mdchap;
import org.junit.Test;
import static org.junit.Assert.assertSame;
/**
* Unit tests for App.
*/
public class AppTest {
/**
* Create an App and check its state is CREATED.
*/
@Test
public void shouldAnswerWithTrue() {
App app = new App();
assertSame("State is not CREATED", app.getState(), App.AppState.CREATED);
}
}