This commit is contained in:
Stephane Nicoll
2017-12-12 11:57:24 +01:00
parent 97c91eee94
commit 23218add90
615 changed files with 2832 additions and 3224 deletions

View File

@@ -49,14 +49,14 @@ public class SampleActuatorUiApplicationPortTests {
private int managementPort = 9011;
@Test
public void testHome() throws Exception {
public void testHome() {
ResponseEntity<String> entity = new TestRestTemplate()
.getForEntity("http://localhost:" + this.port, String.class);
assertThat(entity.getStatusCode()).isEqualTo(HttpStatus.OK);
}
@Test
public void testMetrics() throws Exception {
public void testMetrics() {
@SuppressWarnings("rawtypes")
ResponseEntity<Map> entity = new TestRestTemplate().getForEntity(
"http://localhost:" + this.managementPort + "/actuator/metrics",
@@ -65,7 +65,7 @@ public class SampleActuatorUiApplicationPortTests {
}
@Test
public void testHealth() throws Exception {
public void testHealth() {
ResponseEntity<String> entity = new TestRestTemplate()
.withBasicAuth("user", getPassword()).getForEntity(
"http://localhost:" + this.managementPort + "/actuator/health",

View File

@@ -49,7 +49,7 @@ public class SampleActuatorUiApplicationTests {
private TestRestTemplate restTemplate;
@Test
public void testHome() throws Exception {
public void testHome() {
HttpHeaders headers = new HttpHeaders();
headers.setAccept(Arrays.asList(MediaType.TEXT_HTML));
ResponseEntity<String> entity = this.restTemplate
@@ -60,7 +60,7 @@ public class SampleActuatorUiApplicationTests {
}
@Test
public void testCss() throws Exception {
public void testCss() {
ResponseEntity<String> entity = this.restTemplate
.getForEntity("/css/bootstrap.min.css", String.class);
assertThat(entity.getStatusCode()).isEqualTo(HttpStatus.OK);
@@ -68,7 +68,7 @@ public class SampleActuatorUiApplicationTests {
}
@Test
public void testMetrics() throws Exception {
public void testMetrics() {
@SuppressWarnings("rawtypes")
ResponseEntity<Map> entity = this.restTemplate.getForEntity("/actuator/metrics",
Map.class);
@@ -76,7 +76,7 @@ public class SampleActuatorUiApplicationTests {
}
@Test
public void testError() throws Exception {
public void testError() {
HttpHeaders headers = new HttpHeaders();
headers.setAccept(Arrays.asList(MediaType.TEXT_HTML));
ResponseEntity<String> entity = this.restTemplate