mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 20:19:06 +00:00
7 lines
181 B
Groovy
7 lines
181 B
Groovy
class BookTests {
|
|
@Test
|
|
void testBooks() {
|
|
Book book = new Book(author: "Tom Clancy", title: "Threat Vector")
|
|
assertEquals("Tom Clancy", book.author)
|
|
}
|
|
} |