使用JUnit4對SSH2架構Service/Dao層進行單元測試

來源:互聯網
上載者:User

  1. JUnit是一個非常好用的測試架構,但在對SSH架構的Java代碼中需要注入由Spring管理的Bean,下面就簡單介紹一下使用JUnit4對SSHSSH2架構Service/Dao層進行單元測試的方法。
    • 在建立JUnit Test Case 測試類別時,勾選setUpBeforeClass,我們需要在setUpBeforeClass()類中載入Spring設定檔。其它步驟和一般的Java測試過程一樣(添加測試類別的名稱,選擇需要測試的類和要測試的方法)。
    • 建立好測試類別後在setUpBeforeClass() 類中添加ApplicationContext context = new FileSystemXmlApplicationContext(new String[]{"src/applicationContext.xml"});來載入設定檔,注意設定檔的路徑(根據自己的設定檔位置選擇)。然後使用context.getBean()擷取對象。

  2.   樣本:
    public class testService{public static EnterpriseinfoServiceImpl service;@BeforeClasspublic static void setUpBeforeClass() throws Exception{System.out.println("載入設定檔……");ApplicationContext context = new FileSystemXmlApplicationContext(new String[]{"src/applicationContext.xml"});System.out.println("載入設定檔成功");service = (EnterpriseinfoServiceImpl) context.getBean("enterpriseinfoService"); //enterpriseinfoService為applicationContext.xml設定檔中Service類對象id值}@Testpublic void testSave(){try{Enterpriseinfo info = new Enterpriseinfo();info.setEnglishabbreviation("Myenglishname");info.setEnglishfullname("myenglishfullname");info.setEnterpriseabbreviation("enterpriseabbreviation");info.setEnterprisefullname("enterprisefullname");info.setStockcode(12434);info.setId(3);service.save(info);} catch (Exception e){e.printStackTrace();}}}

    注意:該測試方法測試後資料並不會自動復原

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.