2017-06-29 128 views
0

在集成測試類我遇到的這行代碼:SpringClassRule/SpringMethodRule實際上做了什麼?

@ClassRule 
    public static final SpringClassRule SPRING_CLASS_RULE = new SpringClassRule(); 

    @Rule 
    public final SpringMethodRule springMethodRule = new SpringMethodRule(); 

當我嘗試導航到類(我用的IntelliJ IDEA)我得到「無法找到聲明去」。當我嘗試找到用法時,我得到'沒有在該項目中找到用法' 我熟悉規則的概念。但仍然不明白這兩件事是做什麼的。 我查看了此頁:https://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/ 沒有資料。

回答

0

除了什麼用@達倫 - 科西春季啓動@RunWith(SpringJUnit4ClassRunner.class)的最新版本稱被刪除,而不是,你應該使用@RunWith(SpringRunner.class)

相關問題