欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

单元测试

程序员文章站 2022-06-01 16:43:34
...
[size=large]junit(mrunit)的注意点:[/size]

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.getClass().getMethod(sMethod, null);
}

long time2=System.currentTimeMillis()-time1;

System.out.print("Method: "+sMethod+"time:"+time2);

}

相关标签: java unit test