加载中
android小配置junit测试环境

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.mysession.test" android:versionCode="1" ...

2013/09/06 20:05
73
junit 案例(三)

package zwh.junit.test; import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.assertThat; import org.junit.After; import org.junit.AfterClass; impo...

2013/06/08 17:29
81
junit 案例(二)

package zwh.junit; public class T {        public int add(int x,int y){     return x+y;        }   public int divide(int x,int y){     return x/y;   } } 编写对应测试代码如下 pa...

2013/06/08 17:16
71
junit初识(一)

http://junit.org/ 官方介绍: JUnit is a simple framework to write repeatable tests. It is an instance of the xUnit architecture for unit testing frameworks. 什么是单元测试 写了个...

2013/06/08 16:09
81

没有更多内容

加载失败,请刷新页面

没有更多内容

返回顶部
顶部