寫好上面的代碼后,接下來是編譯的過程,有兩種方式,一種是鏈接靜態(tài)庫,一種是鏈接動態(tài)庫,下面是鏈接靜態(tài)庫,編譯命令如下:
[root@testhost testexample]g++ -L /usr/local/lib/libcppunit.a hellolinux.cpp -lcppunit -ldl -o hellolinux
編譯選項中需要增加 -lcppunit -ldl兩個選項,-lcppunit是連接cppunit的庫,而cppunit的庫中使用了dl庫里面的函數(shù)。接下來你可以運行一下,看看結果如何了:
[root@testhost testexample]# ./hellolinux
Test::testHelloWorldHello, world!
: OK
鏈接動態(tài)庫,編譯命令如下:
[root@testhost testexample]# g++ hellolinux.cpp -lcppunit -ldl -o hellolinux
另一例子,把如下的代碼上傳到一個目錄,如math:
編譯命令如下:
[root@testhost math]# g++ -L /usr/local/lib/libcppunit.a Main.cpp MathTest.cpp -lcppunit -ldl -o MathTest
然后執(zhí)行:
[root@testhost math]# ./MathTest
..F
!!!FAILURES!!!
Test Results:
Run: 2 Failures: 1 Errors: 0
1) test: MathTest::testSub (F) line: 30 MathTest.cpp
assertion failed
- Expression: result == 1
整個的源代碼如下:
/////////////////////////////////////////////////////////////////////
// Function: A simple Math test
// DATE : 2008-1-16
// Author : xulinlin
// Vesion : V1.0
// FileName: MathTest.h
/////////////////////////////////////////////////////////////////////
//因為需要使用TestFixture這個類,所以引入HelperMacros.h頭文件
#include "cppunit/extensions/HelperMacros.h"
//聲明一個測試類
class MathTest : public CppUnit::TestFixture {
// 添加一個TestSuite
CPPUNIT_TEST_SUITE( MathTest );
// 添加測試用例到TestSuite, 定義新的測試用例需要在這兒聲明一下
CPPUNIT_TEST( testAdd );
CPPUNIT_TEST( testSub );
// TestSuite添加完成
CPPUNIT_TEST_SUITE_END();
protected:
int x, y;
public:
MathTest() {}
// 初始化函數(shù)
void setUp ();
// 清理函數(shù)
void tearDown();
// 測試加法的測試函數(shù)
void testAdd ();
// 測試減法的測試函數(shù)
void testSub ();
};
/////////////////////////////////////////////////////////////////////
// Function: A simple Math test
// DATE : 2008-1-16
// Author : xulinlin
// Vesion : V1.0
// FileName: MathTest.cpp
/////////////////////////////////////////////////////////////////////
#include "MathTest.h"
// 把這個TestSuite注冊到名字為"alltest"的TestSuite中, 如果沒有定義會自動定義
// 也可以CPPUNIT_TEST_SUITE_REGISTRATION( MathTest );注冊到全局的一個未命名的TestSuite中.
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( MathTest, "alltest" );
// 下面不變
void MathTest::setUp()
{
x = 2;
y = 3;
}
void MathTest::tearDown()
{
}
void MathTest::testAdd()
{
int result = x + y;
CPPUNIT_ASSERT( result == 5 );
}
void MathTest::testSub()
{
int result = x + y;
CPPUNIT_ASSERT( result == 1 );
}
/////////////////////////////////////////////////////////////////////
// Function: Main file for test
// DATE : 2008-1-16
// Author : xulinlin
// Vesion : V1.0
// FileName: Main.cpp
// Compile : g++ -L /usr/local/lib/libcppunit.a Main.cpp MathTest.cpp -lcppunit -ldl -o MathTest
/////////////////////////////////////////////////////////////////////
#include <cppunit/extensions/TestFactoryRegistry.h>
//使用文本執(zhí)行器
#include <cppunit/ui/text/TestRunner.h>
// 如果不更改TestSuite, 本文件后期不需要更改.
int main()
{
CppUnit::TextUi::TestRunner runner;
// 從注冊的TestSuite中獲取特定的TestSuite, 沒有參數(shù)獲取未命名的TestSuite.
CppUnit::TestFactoryRegistry ®istry = CppUnit::TestFactoryRegistry::getRegistry("alltest");
// 添加這個TestSuite到TestRunner中
runner.addTest( registry.makeTest() );
// 運行測試
runner.run();
}