• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

测试驱动开发方法介绍及CPPUnit使用指南

发布: 2009-5-21 11:11 | 作者: 不详 | 来源: 测试时代采编 | 查看: 359次 | 进入软件测试论坛讨论

领测软件测试网

      ComplexNumberTest( std::string name ) : CppUnit::TestCase( name ) {}

            

             void runTest() {

               CPPUNIT_ASSERT( MyComplex (10, 1) == MyComplex (10, 1) ); // note:1

               CPPUNIT_ASSERT( !(MyComplex (1, 1) == MyComplex (2, 2)) ); //note:2

             }

           };

        这个测试用例的意图很明显,就是对MyComplex类进行相等测试,根据复数的数学知识,能够得到note:1处我们期望的是相等,而note:2处则是不等。有了这个测试用例后,对其进行编译,由于MyComplex类没有进行定义,因此将无法通过编译,不过,这是单元测试中必然会遇到的问题。对于无法编译的恐惧驱使我们尽快的完成下面的代码:

           //If we compile now ,we get compile error.So keep fixing it.

           bool operator==( const MyComplex &a, const MyComplex &b)

           {

             return true;

           }

           //Now compile it again,Ok!Run it,we'll get some fail.

           //This is because the operator==() doesn't work properly.Keep fixing it.

        现在编译没问题了,可以松一口气了,不过无法通过测试,于是再接再厉,写下:

           class MyComplex {

             friend bool operator ==(const MyComplex& a, const MyComplex& b);

             double real, imaginary;

           public:

             MyComplex( double r, double i = 0 )

               : real(r)

                   , imaginary(i)

             {

             }

           };

          

           bool operator ==( const MyComplex &a, const MyComplex &b )

           {

             return a.real == b.real  &&  a.imaginary == b.imaginary;

           }

           //If we compile now and run our test it will pass.

        编译,测试,通过了,这个世界清静了,恍如来到了桃花源…

        不过,我们要的尽善尽美,MyComplex不够美丽,于是改了个名字CComplex,这下大功告成,但是,心里始终还是有个结,如何把它用在自己的项目中呢?欲知后事,请代下回分解。

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/

22/2<12

关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网