您的位置:軟件測(cè)試 > 開源軟件測(cè)試 > 開源單元測(cè)試工具 > junit
junit測(cè)試ssh項(xiàng)目
作者:網(wǎng)絡(luò)轉(zhuǎn)載 發(fā)布時(shí)間:[ 2014/1/23 11:30:35 ] 推薦標(biāo)簽:測(cè)試 ssh框架 單元測(cè)試

測(cè)試ssh框架的項(xiàng)目,需要加載spring配置文件applicationContext.xml,數(shù)據(jù)庫(kù)連接的文件hibernate.xml。此項(xiàng)目中的hibernate文件整合到了spring配置文件中。

上篇日志<junit>提到BeforeClass是“所有測(cè)試方法執(zhí)行之前首先執(zhí)行此方法,可用于數(shù)據(jù)庫(kù)連接,加載配置文件等” ,所以將加載spring配置文件的代碼寫在這里,但是BeforeClass下寫的函數(shù)得是靜態(tài)的

public class userservicetest {
 
   public static UsersService usersService;
  @BeforeClass
  public staticvoid onSetUpBeforeTransaction() throws Exception {
     ApplicationContext context = new FileSystemXmlApplicationContext(
          new String[ ] {
            "/WebRoot/WEB-INF/applicationContext.xml"             
            }
        );      
     usersService = (UsersService) context.getBean("usersService");
      }
   @Test
  public void testfindUserByAccountNames() {
  String userId="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
 
  try {
            String realname= usersService.findUserByAccountNames(userId);          
            assertThat(realname, is("管理員"));         
            Assert.assertEquals("管理員", realname);
        } catch (CRUDException e) {
            e.printStackTrace();
        }
 }
}

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