123124125126127128129130131132133
} @Test(expected = Exception.class) public void testThrowException() throws Throwable { Aop1 a1 = getNewInstance(Aop1.class); a1.throwException(); } @Test public void testArgs() throws Throwable { Aop1 a1 = getNewInstance(Aop1.class);
121122123124125126127128129130131