mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-05-03 03:43:54 +01:00
6fb44b2410
See gh-6971 See gh-6973
22 lines
391 B
Groovy
22 lines
391 B
Groovy
package com.example
|
|
|
|
@SpringBootApplication
|
|
@SpringBootTest(classes=RestTests, webEnvironment=WebEnvironment.RANDOM_PORT)
|
|
class RestTests {
|
|
|
|
@Autowired
|
|
TestRestTemplate testRestTemplate;
|
|
|
|
@Test
|
|
void testHome() {
|
|
assertEquals('Hello', testRestTemplate.getForObject('/', String))
|
|
}
|
|
|
|
@RestController
|
|
static class Application {
|
|
@RequestMapping('/')
|
|
String hello() { 'Hello' }
|
|
}
|
|
|
|
}
|