阿里知识储备之二——junit学习以及android单元测试
一,junit框架
http://blog.csdn.net/afeilxc/article/details/6218908
详细见这篇博客
juit目前已经可以和maven项目进行集成和测试,而且貌似不需要单独引入junit的组件就可以(maven自身已经引入?)
注意一下以下几个标记
@BeforeClass,@Before,@Test(timeout = 50),@After,@Before,@Test(expected = Exception.class),@After,@Before,@Test
@After,@AfterClass
二、android单元测试
http://www.oschina.net/question/54100_27061
参见这篇博客吧,包括现有的sword框架也是在google原生的instruction的基础上再次封装来的。