mock,[mɒk],adj. 虚拟的,模拟的。
如果你的代码对另一个类或者接口有依赖,mock测试能够帮你模拟这些依赖,从而完成测试。
使用场景:
类A有一个方法fun(B b),它依赖于B类的一个对象。所以要测试这个方法必须要有b对象。如果自己构造B对象,并做一些操作来适应测试,会显得麻烦。那么就可以用mock测试。
<dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.8.5</version> <scope>test</scope> </dependency>
package com.yichudu; import static org.mockito.Mockito.*; import java.util.List; import static org.junit.Assert.*; import org.junit.Test; public class MockTest { @Test public void simpleTest() { //创建mock对象,参数可以是类,也可以是接口 @SuppressWarnings("unchecked") List list = mock(List.class); // 设置方法的预期返回值 when(list.get(0)).thenReturn("helloworld"); // junit测试 assertEquals("helloworld", list.get(0)); // 验证方法调用(是否调用了get(0)) verify(list).get(0); } @Test public void test2(){ @SuppressWarnings("unchecked") List list = mock(List.class); when(list.get(0)).thenReturn("helloworld"); //list为mock对象,不需要我们自己构造list并塞入元素 assertTrue(StringOP.ifTheFirstIsHelloworld(list)); } } class StringOP{ public static boolean ifTheFirstIsHelloworld(List list){ return list.get(0).equals("helloworld"); } }
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系我们删除。