码迷,mamicode.com
首页 > 其他好文 > 详细

junit单元测试

时间:2015-05-25 18:29:37      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

第一步选择要测试的类,然后单击右键---选择新建---Junit Test Case ,然后创建一个类,格式是Test+类名,然后选择next,选择你要测试的是哪些方法,最后点击完成即可。

 1 public class CustomerDaoImplTest {
 2 
 3     CustomerDaoImpl dao = new CustomerDaoImpl() ;
 4     
 5     @Test
 6     public void testFindOne() {
 7          Customer c = dao.findOne("0117ab3b-bf7c-466d-a8f4-ceffb1b211ea") ;
 8          
 9          System.out.println(c.getName());
10     }
11 
12     @Test
13     public void testFindAll() {
14         List<Customer> list = dao.findAll() ;
15         System.out.println(list.size());
16     }
17     

会自动生成@Test表示已经自动创建好了。

接下来只要填写测试内容即可

junit单元测试

标签:

原文地址:http://www.cnblogs.com/ouysq/p/4528466.html

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