use of com.baeldung.bootique.service.HelloService in project tutorials by eugenp.
the class AppTest method givenService_expectBoolen.
@Test
public void givenService_expectBoolen() {
BQRuntime runtime = bqTestFactory.app("--server").autoLoadModules().createRuntime();
HelloService service = runtime.getInstance(HelloService.class);
assertEquals(true, service.save());
}
Aggregations