package Test25_Demo.TestDemo;/*
@create 2020--12--18--9:36
*/
/**
* junit测试类也是一个普通的类,也可以实例化
* 但是如果使用main方法调用junit中的方法的时候,标签不会按照自己的功能进行处理
* 会按照从上往下的顺序执行
*/
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
public class JunitTest02 {
public static void main(String[] args) {
//实例化这个类
JunitTest01 test01 = new JunitTest01();
test01.test01();
test01.After();
test01.Before();
/**
* 测试1
* 在test方法之后运行
* 在test方法之前运行
*/
}
}