spring_reference/IV. Spring Boot features/35.1. Test scope dependenci...

10 lines
605 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

### 35.1. 测试作用域依赖
如果使用spring-boot-starter-test Starter POM在test作用域内你将发现下列被提供的库
- Spring Test - 对Spring应用的集成测试支持
- JUnit - 事实上的(de-facto)标准用于Java应用的单元测试。
- Hamcrest - 一个匹配对象的库也称为约束或前置条件它允许assertThat等JUnit类型的断言。
- Mockito - 一个Java模拟框架。
这也有一些我们写测试用例时经常用到的库。如果它们不能满足你的要求,你可以随意添加其他的测试用的依赖库。