Merge branch 'gesellix-healthcheck-docs'

pull/1118/merge
Christian Dupuis 11 years ago
commit 3b27427a78

@ -17,10 +17,11 @@
package org.springframework.boot.actuate.health; package org.springframework.boot.actuate.health;
/** /**
* Default implementation of {@link HealthIndicator} that simply returns {@literal "ok"}. * Default implementation of {@link HealthIndicator} that simply returns {@literal "UP"}.
* *
* @author Dave Syer * @author Dave Syer
* @author Christian Dupuis * @author Christian Dupuis
* @see Status#UP
*/ */
public class VanillaHealthIndicator extends AbstractHealthIndicator { public class VanillaHealthIndicator extends AbstractHealthIndicator {

@ -28,7 +28,7 @@ import static org.junit.Assert.assertEquals;
public class VanillaHealthIndicatorTests { public class VanillaHealthIndicatorTests {
@Test @Test
public void ok() throws Exception { public void indicatesUp() throws Exception {
VanillaHealthIndicator healthIndicator = new VanillaHealthIndicator(); VanillaHealthIndicator healthIndicator = new VanillaHealthIndicator();
assertEquals(Status.UP, healthIndicator.health().getStatus()); assertEquals(Status.UP, healthIndicator.health().getStatus());
} }

Loading…
Cancel
Save