我通过sdkman安装了Spring Boot CLI。当前版本是2.2.1 RELEASE。
'run'命令很好用。
我尝试测试tests / ReadingListControllerTest.groovy,但是Spring Boot CLI不再提供'test'命令。
有什么方法可以使用Spring Boot CLI进行测试?
当前版本:
$ spring --version
Spring CLI v2.2.1.RELEASE
项目结构:
.
├── Book.groovy
├── Grabs.groovy
├── JdbcReadingListRepository.groovy
├── ReadingListController.groovy
├── ReadingListRepository.groovy
├── schema.sql
├── static
│ └── css
│ └── style.css
├── templates
│ └── readingList.html
└── tests
└── ReadingListControllerTest.groovy
4 directories, 10 files