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);
後續附上代碼。