您的位置:軟件測試 > 開源軟件測試 > 開源單元測試工具 > junit
《項目架構(gòu)那點兒事》?快速構(gòu)建Junit用例
作者:網(wǎng)絡(luò)轉(zhuǎn)載 發(fā)布時間:[ 2015/11/4 14:22:15 ] 推薦標簽:單元測試 軟件測試工具

  二、編寫SpringJunit(依賴包:spring-test-3.0.4.RELEASE.jar,junit4,以及其他的spring核心包),還是以User為例子,我們編寫UserTestUnit來驗證我們后臺的方法,如下:
/**
* @author fisher
* @description 用戶業(yè)務(wù)測試
*/
// 使用springJunit4
@RunWith(SpringJUnit4ClassRunner.class)
// spring配置文件加載(locations為文件路徑)
@ContextConfiguration(locations = {
"classpath:spring/application-hibernate.xml",
"classpath:spring/application-common-service.xml",
"classpath:spring/application-sys-service.xml" })
public class UserTestJunit {
@Autowired
UserService userService;// 自動注入userService
/**
* @description 測試查詢用戶
* @throws Exception
*/
@Test
public void query() throws Exception {
List result = userService.getAllEmployee();
Assert.notEmpty(result);
}
/**
* @description 測試用戶添加
* @throws Exception
*/
@Test
public void save() throws Exception {
User user = new User();
user.setUsrCode("test001");
user.setUsrName("test");
user.setPassword("123");
user.setIdCard("513029198503140026");
user.setEmail("aaa@sina.com");
User u = userService.save(user);
Assert.notNull(u);
org.junit.Assert.assertEquals("test", user.getUsrName());
}
/**
* @description 測試用戶更新
* @throws Exception
*/
@Test
public void update() throws Exception {
User user = new User();
user.setUsrCode("test001");
user.setUsrName("test");
user.setPassword("123");
user.setIdCard("513029198503140026");
user.setEmail("aaa@sina.com");
User u = userService.update(user);
Assert.notNull(u);
org.junit.Assert.assertEquals("test", user.getUsrName());
}
/**
* @description 測試用戶刪除
* @throws Exception
*/
@Test
public void del() throws Exception {
User user = new User();
user.setUserId("1");
User u = userService.delete(user);
Assert.notNull(u);
org.junit.Assert.assertEquals("1", user.getUserId());
}
}
  【總結(jié)】單元測試不于此,靈活性比較大,要結(jié)合實際進行編寫,上面兩種測試是按照我們項目中規(guī)范編寫,大家可以作為參考,自我覺得還是比較實用而且用注解方式比較方便。

上一頁12下一頁
軟件測試工具 | 聯(lián)系我們 | 投訴建議 | 誠聘英才 | 申請使用列表 | 網(wǎng)站地圖
滬ICP備07036474 2003-2017 版權(quán)所有 上海澤眾軟件科技有限公司 Shanghai ZeZhong Software Co.,Ltd