• <ruby id="5koa6"></ruby>
    <ruby id="5koa6"><option id="5koa6"><thead id="5koa6"></thead></option></ruby>

    <progress id="5koa6"></progress>

  • <strong id="5koa6"></strong>
    • 軟件測試技術
    • 軟件測試博客
    • 軟件測試視頻
    • 開源軟件測試技術
    • 軟件測試論壇
    • 軟件測試沙龍
    • 軟件測試資料下載
    • 軟件測試雜志
    • 軟件測試人才招聘
      暫時沒有公告

    字號: | 推薦給好友 上一篇 | 下一篇

    cppunit helloworld詳盡篇

    發布: 2007-4-22 19:30 | 作者: 獸族的榮…  &nb | 來源: 博客園     | 查看: 140次 | 進入軟件測試論壇討論

    領測軟件測試網
    cppunit文檔真少。一個hellpworld程序折騰了好幾個小時才折騰夠。tnnd作者給的幫助就那么幾句話。

    偶就結合折騰過程,寫一個更詳細點的helloworld。

    系統:fc4,gcc4

    (1)下載
        到cppunit.sourceforge.net上下載源代碼。我的是cppunit-1.10.2.tar.gz。copy到/usr/src下。運行:
            tar -xf cppunit-1.10.2.tar.gz
        解壓縮。
    (2)安裝
        進入cppunit-1.10.2目錄下。運行:
            ./configure; make; make check; make install
        安裝。make check有些項通不過。沒關系。:P
        .o, .a文件已經安裝到/usr/local/lib中去了,但頭文件沒安裝到/usr/include中去
    (3)copy *.h文件
        把cppunit-1.10.2的cppunit目錄復制到/usr/include下
    (4)撰寫mytest.cpp(從cppunit.sourceforge.net上copy下來的)
     1 #include <iostream>
     2 
     3 #include <cppunit/TestRunner.h>
     4 #include <cppunit/TestResult.h>
     5 #include <cppunit/TestResultCollector.h>
     6 #include <cppunit/extensions/HelperMacros.h>
     7 #include <cppunit/BriefTestProgressListener.h>
     8 #include <cppunit/extensions/TestFactoryRegistry.h>
     9 
    10 
    11 class Test : public CPPUNIT_NS::TestCase
    12 {
    13   CPPUNIT_TEST_SUITE(Test);
    14   CPPUNIT_TEST(testHelloWorld);
    15   CPPUNIT_TEST_SUITE_END();
    16 
    17 public:
    18   void setUp(void) {}
    19   void tearDown(void) {} 
    20 
    21 protected:
    22   void testHelloWorld(void) { std::cout << "Hello, world!" << std::endl; }
    23 };
    24 
    25 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
    26 
    27 int main( int argc, char **argv )
    28 {
    29   // Create the event manager and test controller
    30   CPPUNIT_NS::TestResult controller;
    31 
    32   // Add a listener that colllects test result
    33   CPPUNIT_NS::TestResultCollector result;
    34   controller.addListener( &result );        
    35 
    36   // Add a listener that print dots as test run.
    37   CPPUNIT_NS::BriefTestProgressListener progress;
    38   controller.addListener( &progress );      
    39 
    40   // Add the top suite to the test runner
    41   CPPUNIT_NS::TestRunner runner;
    42   runner.addTest( CPPUNIT_NS::TestFactoryRegistry::getRegistry().makeTest() );
    43   runner.run( controller );
    44 
    45   return result.wasSuccessful() ? 0 : 1;
    46 }
    47 
    48 
    (5)編譯,運行
            有兩種方法
            (a) 鏈接靜態庫。編譯命令:
           g++ -L/usr/local/lib/libcppunit.a mytest.cpp -lcppunit -ldl -o mytest
           運行:
           ./mytest
           結果:
            Test::testHelloWorldHello, world!
             : OK
             (b) 鏈接動態庫。編譯命令:
           g++ mytest.cpp -lcppunit -ldl -o mytest
           運行時要先設置環境變量LD_LIBRARY_PATH到cppunit的安裝目錄,也就是/usr/local/lib,命令如下:
           export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
           然后運行:
           ./mytest
           結果:
            Test::testHelloWorldHello, world!
             : OK

    延伸閱讀

    文章來源于領測軟件測試網 http://www.kjueaiud.com/


    關于領測軟件測試網 | 領測軟件測試網合作伙伴 | 廣告服務 | 投稿指南 | 聯系我們 | 網站地圖 | 友情鏈接
    版權所有(C) 2003-2010 TestAge(領測軟件測試網)|領測國際科技(北京)有限公司|軟件測試工程師培訓網 All Rights Reserved
    北京市海淀區中關村南大街9號北京理工科技大廈1402室 京ICP備10010545號-5
    技術支持和業務聯系:info@testage.com.cn 電話:010-51297073

    軟件測試 | 領測國際ISTQBISTQB官網TMMiTMMi認證國際軟件測試工程師認證領測軟件測試網

    老湿亚洲永久精品ww47香蕉图片_日韩欧美中文字幕北美法律_国产AV永久无码天堂影院_久久婷婷综合色丁香五月

  • <ruby id="5koa6"></ruby>
    <ruby id="5koa6"><option id="5koa6"><thead id="5koa6"></thead></option></ruby>

    <progress id="5koa6"></progress>

  • <strong id="5koa6"></strong>