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