junit4支持注解了,只要在要执行的方法前加@Test即可:
@Test public void multiplyPoundsByInteger() { assertEquals( 10, 5 ); }