Update 35.3.1. Using Spock to test Spring Boot applications.md

master
qibaoguang 2015-02-27 21:21:11 +08:00
parent 09e524cf29
commit bf1ae3a33c
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
### 35.3.1. 使用Spock测试Spring Boot应用
如果期望使用Spock测试一个Spring Boot应用你应该将Spock的spock-spring模块依赖添加到应用的构建中。spock-spring将Spring的测试框架集成到了Spock里。
注意你不能使用上述提到的@SpringApplicationConfiguration注解因为[Spock找不到@ContextConfiguration元注解](https://code.google.com/p/spock/issues/detail?id=349)。为了绕过该限制,你应该直接使用@ContextConfiguration注解并使用Spring Boot特定的上下文加载器来配置它。
```java
@ContextConfiguration(loader = SpringApplicationContextLoader.class)
class ExampleSpec extends Specification {
// ...
}
```
**注**上面描述的注解在Spock中可以使用比如你可以使用@WebIntegrationTest注解你的Specification以满足测试需要。