Maven简单的配置Junit测试及使用简单的mock
生活随笔
收集整理的這篇文章主要介紹了
Maven简单的配置Junit测试及使用简单的mock
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1、maven依賴配置如下
<dependency><groupId>org.mockito</groupId><artifactId>mockito-all</artifactId><version>1.9.5</version><scope>test</scope></dependency><dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>4.11</version><scope>test</scope></dependency><build><plugins><plugin><artifactId>maven-assembly-plugin</artifactId><configuration><appendAssemblyId>false</appendAssemblyId><descriptorRefs><descriptorRef>jar-with-dependencies</descriptorRef></descriptorRefs><archive><manifest><mainClass>RunJob</mainClass></manifest></archive></configuration><executions><execution><id>make-assembly</id><phase>package</phase><goals><goal>assembly</goal></goals></execution></executions></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-surefire-plugin</artifactId><version>2.5</version></plugin></plugins></build>?
?
2、編寫測試代碼
public class SimpleTest {@Testpublic void test() {Assert.assertTrue("a".equals("a"));}@Testpublic void testMock() {List m = mock(List.class);m.add(1);m.clear();verify(m).add(1);//驗證執行過add(1)操作verify(m).clear();//驗證執行過clear操作 }@Testpublic void when_thenReturn() {//mock一個Iterator類Iterator iterator = mock(Iterator.class);//預設當iterator調用next()時第一次返回hello,第n次都返回worldwhen(iterator.next()).thenReturn("hello").thenReturn("world");//使用mock的對象String result = iterator.next() + " " + iterator.next() + " " + iterator.next();//驗證結果assertEquals("hello world world", result);} }?
轉載于:https://www.cnblogs.com/maxiaofang/p/6608081.html
《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀總結
以上是生活随笔為你收集整理的Maven简单的配置Junit测试及使用简单的mock的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: day58-activiti 02-历史
- 下一篇: bios设置完怎么开机画面 BIOS设置