您好,登錄后才能下訂單哦!
本篇內容主要講解“Java5中單元測試的使用方法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Java5中單元測試的使用方法”吧!
1、JUnit4使用Java5中的注解(annotation)
@Before:初始化方法 對于每一個測試方法都要執行一次(注意與BeforeClass區別,后者是對于所有方法執行一次)
@After:釋放資源 對于每一個測試方法都要執行一次(注意與AfterClass區別,后者是對于所有方法執行一次)
@Test:測試方法,在這里可以測試期望異常和超時時間
@Test(expected=ArithmeticException.class)檢查被測方法是否拋出ArithmeticException異常
@Ignore:忽略的測試方法
@BeforeClass:針對所有測試,只執行一次,且必須為static void
@AfterClass:針對所有測試,只執行一次,且必須為static void
一個JUnit4的單元測試用例執行順序為:
@BeforeClass -> @Before -> @Test -> @After -> @AfterClass;
每一個測試方法的調用順序為:
@Before -> @Test -> @After;
2、執行順序
隨機執行
@FixMethodOrder(MethodSorters.DEFAULT)
public class TestOrder
按testcase名稱字符串順序執行
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class TestOrder
3、代碼注入Mock
JMokit中的@Mocked與@Injectable區別
public class CommonDaoTest {
@Mock
private MongoTemplate mongoTemplate; //注入mongdb mock類,不訪問庫
@InjectMocks //注入的目標類,要實現的test類
private CommonDao commonDao;
@Before
public void setUp() {
MockitoAnnotations.initMocks(this); //此處一定要記得加上,否則出錯
}
@Test
public void dropCollectionName() {
doNothing().when(mongoTemplate).dropCollection("116");
commonDao.dropCollectionName("116"); //CommonDao實現了刪除文檔的功能
}
}
<dependency>
<groupId>org.jmockit</groupId>
<artifactId>jmockit</artifactId>
<version>1.23</version>
<scope>test</scope>
</dependency>
4、各種mock示例
when(systemConfigurationService.getConfiguration(eq(String.class), anyString())).thenReturn("(\\d+\\.*\\d*)");
when(objService.getKnowledgePointList(anyList())).thenReturn(objectiveKnowledges);
when(mongoTemplate.updateFirst(any(Query.class), any(Update.class), anyString())).thenReturn(mock(WriteResult.class));
when(mongoTemplate.collectionExists("111")).thenReturn(false);
when(configRepository.findByType(anyString())).thenReturn(mock(Config.class));
到此,相信大家對“Java5中單元測試的使用方法”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。