6、編譯,運行
有兩種方法
(a)鏈接靜態(tài)庫。編譯命令:
g++ -L/usr/local/lib/libcppunit.atestApp.cpp -lcppunit -ldl -otestApp
運行:
./testApp
結果:
: OK
(b)鏈接動態(tài)庫。編譯命令:
g++testApp.cpp -lcppunit -ldl -otestApp
然后運行:
./testApp
結果:
Test::
: OK
7、其他例子
在cppunit-docs-1.11.6中有文檔money_example.html,該文檔詳細的介紹了測試、開發(fā)的過程;
本文轉自:http://blog.csdn.net/lengxingfei/archive/2006/04/19/669659.aspx