spring-boot/spring-boot-cli/test-samples/test.groovy
2013-11-04 22:21:37 -08:00

8 lines
161 B
Groovy

class BookTests {
@Test
void testBooks() {
Book book = new Book(author: "Tom Clancy", title: "Threat Vector")
assertEquals("Tom Clancy", book.author)
}
}