天天看點

單元測試-生成Junit測試類

1. 在需要生成單元測試的類名上Ctrl+Shift+T

2. 選擇“New Test”

3. 出現這個頁面後,選擇單元測試類需要放置的路徑,以及需要被單元測試的方法,即可。

單元測試-生成Junit測試類

4. 單元測試方法的注意事項:

    ①使用@ContextConfiguration注解引入配置檔案

    @ContextConfiguration(Locations="../applicationContext.xml")

引入被測試代碼的spring檔案

②使用@Runwith(SpringJUnit4ClassRunner.class)注解,為了使單元測試在spring環境下運作

③@Autowired