码迷,mamicode.com
首页 > 编程语言 > 详细

springboot2.0以后的junit

时间:2019-11-21 10:05:04      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:spring   ring   tar   user   pre   oid   dao   class   code   

只需要引入:

<dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>

就可以可以单元测试:

/**
* 测试类
*/
public class App {

   @Test
   public void test(){
       //目标对象
       UserDao target = new UserDao();

       //代理对象
       UserDao proxy = (UserDao)new ProxyFactory(target).getProxyInstance();

       //执行代理对象的方法
       proxy.save();
   }
}

 

springboot2.0以后的junit

标签:spring   ring   tar   user   pre   oid   dao   class   code   

原文地址:https://www.cnblogs.com/leeego-123/p/11903526.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!