如何使用spring-boot框架运行测试用例

时间:2018-07-21 23:34:47

标签: java spring spring-boot junit

我下载并成功运行了该项目:

https://github.com/spring-guides/gs-accessing-data-mongodb

我注意到该文件上有一些测试用例:

https://github.com/spring-guides/gs-accessing-data-mongodb/blob/master/complete/src/test/java/hello/CustomerRepositoryTests.java

要从命令行运行主应用程序,我要做:

$ ./mvnw spring-boot:run

现在,我想知道要运行测试用例需要执行什么命令?

谢谢!

1 个答案:

答案 0 :(得分:0)

您只需要运行此命令即可运行测试。

  

MVN测试

https://spring.io/guides/gs/testing-web/可以为您提供有关测试的更多信息。