摘要:写在前面因个人能力有限,可能会出现理解错误的地方,欢迎指正和交流关于单元测试通常一个优秀的开源框架,一般都会有很完善的单元测试。
写在前面
因个人能力有限,可能会出现理解错误的地方,欢迎指正和交流!
关于单元测试通常一个优秀的开源框架,一般都会有很完善的单元测试。
举个例子:
不好意思,我调皮了 :)
Retrofit
googlesamples/android-architecture
在这两个优秀的开源框架中,都非常注重单元测试的编写,而且单元测试占的比例也很大,甚至在某些方面上,测试代码会远远多于该框架本身的代码。这里我们以android-architecture中的todoapp为例,看看它的测试代码覆盖率是多少:
恩,相当可观的数据。至少对我而言.
至于如何查看测试代码覆盖率,方法很简单,看图操作:
第一步
第二步
第三步
![3.png](http://o8wshxdfk.bkt.clouddn.com/3.png)
Show Time
所以...
写单元测试很重要.
写单元测试很重要..
写单元测试很重要..
Mockito接下来就让我们开始使用Mockito进行单元测试吧
准备工作dependencies { testCompile "junit:junit:4.12" // 如果要使用Mockito,你需要添加此条依赖库 testCompile "org.mockito:mockito-core:1.+" // 如果你要使用Mockito 用于 Android instrumentation tests,那么需要你添加以下三条依赖库 androidTestCompile "org.mockito:mockito-core:1.+" androidTestCompile "com.google.dexmaker:dexmaker:1.2" androidTestCompile "com.google.dexmaker:dexmaker-mockito:1.2" }创建Mockito测试
在 Mockito 中你可以使用 mock() 方法来创建一个模拟对象,也可以使用注解的方式 @Mock 来创建 ,这里推荐使用注解。需要注意的是,如果是使用注解方式,需要在使用前进行初始化。这里有三种初始化方式:
1.使用 MockitoAnnotations.initMocks(this) 方式
public class MockitoAnnotationsTest { @Mock AccountData accountData; @Before public void setupAccountData(){ MockitoAnnotations.initMocks(this); } @Test public void testIsNotNull(){ assertNotNull(accountData); } }
2.使用 @RunWith(MockitoJUnitRunner.class) 方式
@RunWith(MockitoJUnitRunner.class) public class MockitoJUnitRunnerTest { @Mock AccountData accountData; @Test public void testIsNotNull(){ assertNotNull(accountData); } }
3.使用 MockitoRule 方式
public class MockitoRuleTest { @Mock AccountData accountData; @Rule public MockitoRule mockitoRule = MockitoJUnit.rule(); @Test public void testIsNotNull(){ assertNotNull(accountData); } }如何使用Mockito进行测试
这里我以AccountData类为例,进行一个简单的对象模拟测试
public class AccountData { private boolean isLogin; private String userName; public boolean isLogin() { return isLogin; } public void setLogin(boolean login) { isLogin = login; } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } }
假设现在你想对AccountData的mock对象进行模拟测试:
比如我希望 isLogin() 方法被调用时返回true,那么你可以这样写:
@Test public void testIsLogin(){ when(accountData.isLogin()).thenReturn(true); boolean isLogin=accountData.isLogin(); assertTrue(isLogin); }
如果你希望 getUserName() 被调用返回Jack
@Test public void testGetUserName(){ when(accountData.getUserName()).thenReturn("Jack"); assertEquals("Jack",accountData.getUserName()); }
如果你希望对 setUserName(String userName) 方法中参数进行测试
@Test public void testSetUserName(){ accountData.setUserName("wang"); verify(accountData).setUserName(Matchers.eq("wang")); }
如果你想统计 "isLogin()" 方法被调用的次数:
@Test public void testIsLoginTimes(){ accountData.isLogin(); accountData.isLogin(); verify(accountData,times(2)).isLogin(); }
又或者
verify(mock, never()).someMethod("never called"); verify(mock, atLeastOnce()).someMethod("called at least once"); verify(mock, atLeast(2)).someMethod("called at least twice"); verify(mock, times(5)).someMethod("called five times"); verify(mock, atMost(3)).someMethod("called at most 3 times");
......
是不是使用起来简单明了。
那还等什么,赶紧Get起来吧,如果你想进一步了解,那就赶紧打开 Mockito 的官网吧。
相关链接文中代码示例
Mockito Website
Mockito GitHub
Unit tests with Mockito - Tutorial
我是Jack Wang...
我的心愿是....
Google回归.....
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/64942.html
摘要:写单元测试时,应该把这些依赖隔离,让每个单元保持独立。以上的各种原因,都会影响单元测试的结果。在单元测试的基础上,将相关模块组合成为子系统或系统进行测试,称为集成测试。可以看到,单元测试速度比集成测试,也叫测试要快,并且开发成本也是最低。 showImg(/img/remote/1460000006811144); 原文链接:http://www.jianshu.com/p/bc996...
摘要:什么是单元测试单元测试是对程序的最小单元进行正确性检验的测试工作。编写第一个单元测试单元测试主要使用是测试框架类库的扩展库,需要在中声明测试依赖。目标代码这里以一个简单的中的例子来说明如何写单元测试。TL;DR: 本文主要面向单元测试新手,首先简单介绍了什么是单元测试,为什么要写单元测试,讨论了一下 Android 项目中哪些代码适合做单元测试,并以一个简单例子演示了如何编写属于你的第一个 ...
阅读 602·2021-11-22 15:32
阅读 2703·2021-11-19 09:40
阅读 2264·2021-11-17 09:33
阅读 1236·2021-11-15 11:36
阅读 1838·2021-10-11 10:59
阅读 1448·2019-08-29 16:41
阅读 1720·2019-08-29 13:45
阅读 2117·2019-08-26 13:36