0

我们目前正在将在 C++Builder 5 下开发的源代码迁移到较新的 Embarcadero 的 XE5。展望未来,我们希望在 C++Builder5 下编写我们的单元测试,理想情况下,它在迁移后功能齐全,几乎不需要维护。

不过,我的问题很简单。是否可以在 C++Builder 5 上使用与 Embarcadero 相同的 DUnit 框架?如果是这样,您能给我们一些提示吗?

谢谢你。

4

1 回答 1

4

DUnit 确实可以在 CppBuilder5 上使用。为此:

  • 从这里获取 DUnit 的源代码:http: //sourceforge.net/projects/dunit/files/latest/download
  • 使用以下命令行构建 DUNITRTL.lib,或者您可以制作一个 .bat 文件并从 /dunit/src 文件夹执行它:

    SET NDC6=C:\PROGRA~2\Borland\CBUILD~1
    %NDC6%\bin\dcc32.exe Dunit.dpr /O..\objs /DBCB /M /H /W /JPHN -$d-l-n+p+r-s-t-w-y- %2 %3 %4
    %NDC6%\bin\tlib.exe DUNITRTL.lib /P32 -+dunit.obj -+DunitAbout.obj -+DUnitMainForm.obj -+GUITestRunner.obj -+TestExtensions.obj -+TestFramework.obj -+TestModules.obj -+TextTestRunner.obj
    

完成后,制作测试项目变得很容易:

  • 创建一个 VCL 表单应用程序。
  • 从项目中删除 Unit1.cpp 及其窗体。
  • 添加我们在项目中构建的 DUNITRTL.lib 文件(Project > Add to Project)。
  • 将 /dunit/src 路径添加到库和包含路径。(项目 > 选项 > 文件夹/条件)。
  • 转到Project1.cpp文件并确保它看起来像这样:
    #include <vcl.h>
    #pragma hdrstop

    #include <GUITestRunner.hpp>

    USERES("Project1.res");
    USELIB("DUNITRTL.lib");
    //---------------------------------------------------------------------------
    WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
    {
      try
      {
         Application->Initialize();
         Guitestrunner::RunRegisteredTests();
      }
      catch (Exception &exception)
      {
         Application->ShowException(&exception);
      }
      return 0;
    }
  • 将一个新单元添加到将用作 TestSuite 的项目中。

我的TestCase.h

    //---------------------------------------------------------------------------
    #ifndef __TMYTESTCASE_H__
    #define __TMYTESTCASE_H__
    //---------------------------------------------------------------------------
    #include <TestFramework.hpp>
    class TMyTestCase : public TTestCase
    {
      public:
        __fastcall virtual TMyTestCase(AnsiString name) : TTestCase(name) {}
        virtual void __fastcall SetUp();
        virtual void __fastcall TearDown();

      __published:
        void __fastcall MySuccessfulTest();
        void __fastcall MyFailedTest();
    };
    #endif

我的TestCase.cpp

    #include <vcl.h>
    #pragma hdrstop
    //---------------------------------------------------------------------------
    #include "TMyTestCase.h"
    //---------------------------------------------------------------------------

    void __fastcall TMyTestCase::SetUp()
    {}        
    void __fastcall TMyTestCase::TearDown()
    {}

    void __fastcall TMyTestCase::MySuccessfulTest()
    {
      int a = 1;
      a = a + 1;
      CheckEquals(2,a,"test adding");
    }

    void __fastcall TMyTestCase::MyFailedTest()
    {
      int a = 1;
      a = a + 2;
      CheckEquals(2,a,"test adding");
    }

    static void registerTests()
    {
      _di_ITestSuite iSuite;      
      TTestSuite* testSuite = new TTestSuite("Testing TMyTestCase.h");

      if (testSuite->GetInterface(__uuidof(ITestSuite), &iSuite))
      {
        testSuite->AddTests(__classid(TMyTestCase));
        Testframework::RegisterTest(iSuite);
      }
      else
      {
        delete testSuite;
      }
    }

    #pragma startup registerTests 33
    #pragma package(smart_init)
  • 该项目可以编译和运行。测试应该顺利执行。
于 2014-04-08T14:48:59.977 回答