发布时间:2022-08-18 18:42
* 案例:简单的测试框架
* 小结:
1. 以后大多数时候,我们会使用注解,而不是自定义注解
2. 注解给谁用?
1. 编译器
2. 给解析程序用 好比下面的TestCheck就是解析程序
3. 注解不是程序的一部分,可以理解为注解就是一个标签
package annotation;
import junit.Calculator;
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
/*
简单的测试框架
当主方法执行后会自动自行被检测的所有方法(加了check注解的方法),
判断方法是否有异常记录到文件中
*/
public class TestCheck {
public static void main(String[] args) throws IOException {
//创建计算器对象
Calculator c = new Calculator();
//2.获取字节码文件对象
Class extends Calculator> cls = c.getClass();
//3.获取所有方法
Method[] methods = cls.getMethods();
int num = 0; //出现异常的次数
BufferedWriter bw = new BufferedWriter(new FileWriter("C:\\code\\新建文件夹\\bug.txt"));
for (Method method : methods) {
//4.判断是否有check方法
if (method.isAnnotationPresent(Check.class)) {//这里的Check.class是注解类
// isAnnotationPresent();就是判断method方法加没加注解 参数列表传入的是注解类
//5.有,执行
try {
method.invoke(c);//invoke 有异常用try...catch...捕获
} catch (Exception e) { //这里直接弄一个范围大一点的Exception
//6.捕获异常 记录到文件
num++;
bw.write(method.getName() + "方法出异常了");
bw.newLine();
bw.write("异常的名称" + e.getCause().getClass().getSimpleName());
bw.newLine();
bw.write("异常的原因" + e.getCause().getMessage());
bw.newLine();
bw.write("=================");
}
}
}
bw.write("本次测试一共出现" + num + "异常");
bw.flush();
bw.close();
}
}