c語言實現一個單元測試架構(Unit Test Framework)

來源:互聯網
上載者:User

csdn lidp  轉載註明出處

此單元測試架構為我在google code上的開源項目spider-tool的一部分,

關於spider-tool,歡迎訪問google code. 

https://spider-tool.googlecode.com


單元測試架構介面應盡量簡單並提供必要的功能,使用步驟:

1. 註冊單元測試函數到測試架構

2. 運行測試架構

3.產生單元測試統計資訊(通過測試條數,失敗測試條數,每條測試的執行時間,總時間,測試失敗的代碼位置)

4  從測試架構登出單元測試函數

對應介面函數:

/* 聲明單元測試函數,name 為函數名,隱藏架構細節 */
SPD_TEST_INIT(name);
/* 註冊單元測試函數到測試架構 name為函數名 */
SPD_TEST_REGISTER(name);
 /* 
  * run test framework  in three mode :
  * name : run given name test case, may be NULL 
  * category : run a class of test of given category , may be NULL
  * if both name and category is NULL , will run all registered test case.
  */
SPD_TEST_RUN(name,category);

/* 產生測試報告,可以輸出單個/一組/全部用力到檔案filepath*/
SPD_TEST_REPORT(name, category, filepath);
/* 從架構中登出測試函數 */
SPD_TEST_UNREGISTER(name);

四個對外介面例子:
test_db為要編寫的測試函數,統計測試結果到spddb_test檔案
SPD_TEST_REGISTER(test_db);
SPD_TEST_RUN("test_db",NULL);
SPD_TEST_REPORT("test_db", NULL, "/tmp/spddb_test");
SPD_TEST_UNREGISTER(test_db);

後續附上代碼。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.