59.2 测试你的代码
$ spring test app.groovy tests.groovy
Total: 1, Success: 1, : Failures: 0
Passed? trueclass ApplicationTests {
@Test
void homeSaysHello() {
assertEquals("Hello World!", new WebApplication().home())
}
}Last updated
Was this helpful?