use of com.tvd12.ezyhttp.server.management.HealthCheckController in project ezyhttp by youngmonkeys.
the class HealthCheckControllerTest method healthCheck.
@Test
public void healthCheck() {
// given
HealthCheckController sut = new HealthCheckController();
// when
ResponseEntity actual = sut.healthCheck();
// then
Asserts.assertEquals(actual, ResponseEntity.ok());
}
Aggregations