单元测试

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.getClass().getMethod(sMethod, null);
			}
	  
	  long time2=System.currentTimeMillis()-time1;
	  
	  System.out.print("Method: "+sMethod+"time:"+time2);
	  
  }

你可能感兴趣的:(java unit test)