博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux下如何使用CppUnit进行单元测试
阅读量:6218 次
发布时间:2019-06-21

本文共 3324 字,大约阅读时间需要 11 分钟。

本文参照(纯属抄袭)了《cppunit helloworld详尽篇》一文red_smile.gif,加以本人优美的词句进行了润色。特此声明。

操作系统系统:Ubuntu6,g++

软件版本:cppunit-1.10.2.tar.gz

(1)获得源码: 
    到cppunit.sourceforge.net上下载源代码。将其复制到到linux下或者是直接使用wget下载到linux下。

 

(2)解压缩:

使用以下命令即可解压缩

None.gif         tar  - zxvf cppunit - 1.10 . 2 .tar.gz

 

(3)编译安装 
    cd进cppunit-1.10.2目录下。

None.gif         . / configure

 

None.gif make

 

None.gif make install

 

make的编译的文件都在src/cppunit/.libs。

make install只是把链接库文件复制到/usr/local/lib,其他的似乎什么都没有做。

 

(4)复制头文件

make install没有把头文件安装到/usr/include中去,此时还需要手工去复制,只要把include下面的cppunit目录复制到/usr/include下面就可以了,命令很简单,就不写了。

 

(5)配置链接库路径

    这个时候,看起来似乎已经安装配置成功了,其实不然,在Ubutu、FC(已知的)动态链接库的配置文件里面并没有写入/usr/local/lib的路径,虽然可以编译过,但是你却发现会运行不了,会出现如是的错误:

./mytest: error while loading shared libraries: libcppunit-1.10.so.2: cannot open shared object file: No such file or directory

    真是糟糕,此时你还需要配置一下链接库的路径,链接库配置文件为/etc/ld.so.conf,以下为修改办法:

    vi /etc/ld.so.conf

在新起一行里面加入:

/usr/local/lib

然后再用ldconfig命令重新装载一下配置文件就可以了:

ldconfig

OK,此时你已经可以正常的编译并使用了^__^

(6)编写第一个HelloWorld

撰写mytest.cpp(从cppunit.sourceforge.net上copy下来的),代码如下:

 

None.gif #include  < iostream > 
None.gif 
None.gif 
None.gif
None.gif#include  < cppunit / TestRunner.h > 
None.gif 
None.gif#include  < cppunit / TestResult.h > 
None.gif 
None.gif#include  < cppunit / TestResultCollector.h > 
None.gif 
None.gif#include  < cppunit / extensions / HelperMacros.h > 
None.gif 
None.gif#include  < cppunit / BriefTestProgressListener.h > 
None.gif 
None.gif#include  < cppunit / extensions / TestFactoryRegistry.h > 
None.gif 
None.gif 
None.gif
None.gif 
None.gif
None.gif 
class  Test :  
public  CPPUNIT_NS::TestCase
None.gif
ExpandedBlockStart.gif  {
InBlock.gif
InBlock.gif    CPPUNIT_TEST_SUITE(Test);
InBlock.gif
InBlock.gif    CPPUNIT_TEST(testHelloWorld);
InBlock.gif
InBlock.gif    CPPUNIT_TEST_SUITE_END();
InBlock.gif
InBlock.gif 
InBlock.gif
InBlock.gif     
public :
InBlock.gif
ExpandedSubBlockStart.gif     
void  setUp( 
void )  {} 
InBlock.gif 
ExpandedSubBlockStart.gif      
void  tearDown( 
void )  {}  
InBlock.gif
InBlock.gif 
InBlock.gif
InBlock.gif     
protected :
InBlock.gif
ExpandedSubBlockStart.gif     
void  testHelloWorld( 
void )  { std::cout  <<   " Hello, world! "   <<  std::endl; } 
InBlock.gif 
ExpandedBlockEnd.gif} ;
None.gif
None.gif 
None.gif
None.gifCPPUNIT_TEST_SUITE_REGISTRATION(Test);
None.gif
None.gif 
None.gif
None.gif 
int  main(  
int  argc,  
char   ** argv )
None.gif
ExpandedBlockStart.gif  {
InBlock.gif
InBlock.gif     
// 
 Create the event manager and test controller 
InBlock.gif 
InBlock.gif    CPPUNIT_NS::TestResult controller;
InBlock.gif
InBlock.gif 
InBlock.gif
InBlock.gif     
// 
 Add a listener that colllects test result 
InBlock.gif 
InBlock.gif    CPPUNIT_NS::TestResultCollector result;
InBlock.gif
InBlock.gif    controller.addListener(  & result );        
InBlock.gif
InBlock.gif 
InBlock.gif
InBlock.gif     
// 
 Add a listener that print dots as test run. 
InBlock.gif 
InBlock.gif    CPPUNIT_NS::BriefTestProgressListener progress;
InBlock.gif
InBlock.gif    controller.addListener(  & progress );      
InBlock.gif
InBlock.gif 
InBlock.gif
InBlock.gif     
// 
 Add the top suite to the test runner 
InBlock.gif 
InBlock.gif    CPPUNIT_NS::TestRunner runner;
InBlock.gif
InBlock.gif    runner.addTest( CPPUNIT_NS::TestFactoryRegistry::getRegistry().makeTest() );
InBlock.gif
InBlock.gif    runner.run( controller );
InBlock.gif
InBlock.gif 
InBlock.gif
InBlock.gif     
return  result.wasSuccessful()  ?   0  :  1 ;
InBlock.gif
ExpandedBlockEnd.gif
None.gif

将之保存为mytest.cpp。

 

(7)编译我们的HelloWorld

你可以链接静态库也可以链接静态库。

(a) 链接静态库。编译命令:

 

None.gif g ++   - L / usr / local / lib / libcppunit.a mytest.cpp  - lcppunit  - ldl  - o mytest

 

 

运行:

./mytest

 

结果:

Test::testHelloWorldHello, world!

: OK

(b) 链接动态库。编译命令:

 

None.gif g ++  mytest.cpp  - lcppunit  - ldl  - o mytest

 

运行:

./mytest

结果:

Test::testHelloWorldHello, world!

: OK

 

      如果你没有执行步骤(5),那么你也可以在每次运行之前设置下临时的环境变量LD_LIBRARY_PATH命令如下:

None.gif        export LD_LIBRARY_PATH =/ usr / local / lib:$LD_LIBRARY_PATH


补遗:
非Root用户是不能够往/usr/local/lib/和/usr/include里面写东西的,这个时候就很烦人了。你就只能够把库和头文件放到home目录里面。 

非Root用户的安装需要作如下修改: 

步骤三需要修改 configure ,这里 -prefix=/home/me 的意思是把安装的根目录设置为 /home/me( 我的私人目录, 我不是管理员所以只好安装到自己的 “ 家 “ 了 ),这样 make install 的时候,库文件就会复制到此目录下的 lib 目录里。

./configure -prefix=/home/me 


Ok ,把头文件也放置到 /home/me 里面吧。这样,情况就是:头文件存储在 /home/me/include ,库文件存储在 /home/me/lib 。 

编译的时候命令就会像如下所示:

g++ -g -L/home/me/lib -lcppunit -ldl -I/home/me/include Main.C

因为是非 root 用户,所以步骤( 5 )是无法执行的了,想要能够运行测试程序就只能够执行类型类似命令才能够运行了:

export LD_LIBRARY_PATH=/home/me/lib:$LD_LIBRARY_PATH 


(注:/home/me里面的me代表的是你的用户名,在Linux下面,除了root的用户目录是在/root下,其他用户都是在/home下的,目录名为用户名。当你登录当前用户之后,就在此目录下。) 


单元测试,最终它是要运用到工程中去的,如果还那样用g++命令直接编译,肯定是行不通的,所以还必须要写一个Makefile才可以。

转载地址:http://brlja.baihongyu.com/

你可能感兴趣的文章
Spring Boot 2.0(七):Spring Boot 如何解决项目启动时初始化资源
查看>>
移动手机号神州行去香港购买境外流量包方法和注意事项
查看>>
OpenResty(nginx+lua) 入门
查看>>
斗地主AI算法——第二章の数据结构
查看>>
【转】Go maps in action
查看>>
安卓巴士精选Android开发教程
查看>>
c++中捕捉内存泄露、异常
查看>>
Spark 优化器 ML的论文
查看>>
Spring透过ApplicationListener来触发contextrefreshedevent事件
查看>>
socket连接和TCP连接的关系
查看>>
ABP框架 - 缓存( 转)
查看>>
S域传递函数的零点和极点
查看>>
网络免费API接口整理
查看>>
PHP 运行模式
查看>>
Python:range 对象并不是迭代器
查看>>
TortoiseGit 软件安装过程截图及配置
查看>>
来自一个程序员的反思
查看>>
为什么我们应该使用 pnpm(译)
查看>>
图片服务器------FastDFS
查看>>
springboot--如何优雅的使用mybatis
查看>>