編譯 安裝 CppUnit

2021-08-07 09:52:46 字數 533 閱讀 5908

cppunit是乙個開源的、跨平台的用於

c++的單元

測試

工具。

2、解壓 tar -xvzf cppunit-1.12.1.tar.gz

3、編譯安裝

./configure ldflags='-ldl'

make

make install

備註:ldflags='-ldl'  是因為  在編譯 zxing 軟體執行 scons test 時, 報如下錯誤:

/usr/local/lib/libcppunit.so: undefined reference to `dlsym'

/usr/local/lib/libcppunit.so: undefined reference to `dlopen'

/usr/local/lib/libcppunit.so: undefined reference to `dlclose'

解決方法:

就是再編譯cppunit 時 加入  ldflags='-ldl'。

cppunit在linux下的安裝使用

程式 include iostream include include include include include include class test public cppunit ns testcase void teardown void protected void testhellow...

CppUnit使用簡介

c 單元測試工具cppunit使用簡介 準備工作 1.到 2.解壓檔案,進入src資料夾,開啟cppunitlibraries.dsw。分別編譯這兩個project,輸出位置均為lib資料夾。3.在vc的tools options directories include files和library ...

cppunit使用詳解

寄語 本人只做了windows的,這篇linux的沒做,只使用了他的例子,不錯 cppunit使用詳解 第二步 下面我介紹一下個人認為比較實用的測試程式的結構。這個測試類從cppunit testfixture派生,並且由下面的部分組成 a.setup 方法 在這個方法裡實現一些準備工作,例如生成一...