我正在用JUnit测试我的应用程序:
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = PDK.class)
@WebAppConfiguration // does not run Tomcat
//@WebIntegrationTest // runs Tomcat
@DirtiesContext
public class WebControllersTest {
然后我希望用Geb测试它,Groovy写道:
//@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes=[PDK])
//@WebAppConfiguration
@WebIntegrationTest
@DirtiesContext
class GebMainpageSpec extends GebSpec {
不幸的是,我的带有@Value
注释的bean开始初始化失败。
如何解决?