- 浏览: 13622 次
最新评论
文章列表
http://www.ibm.com/developerworks/cn/java/j-maven/
junit(mrunit)的注意点:
1.测试方法必须以 test开头命名,才会被调用。
2.临时简单的性能测试,用完了把”test“去掉
public void testinvokeMethod() throws SecurityException, NoSuchMethodException
{
String sMethod="testIdentityMapper";
long time1=System.currentTimeMillis();
for(int i=0;i<10000;i++) {
this.ge ...