gpt4 book ai didi

c++ - 使用 Visual Studio 2010 对嵌入式 C++ 代码进行单元测试

转载 作者:太空狗 更新时间:2023-10-29 20:47:31 27 4
gpt4 key购买 nike

我有要重构/添加的遗留代码。该代码是用 C++ 编写的,针对使用 Greenhills 编译器的嵌入式设备。我听说 Visual Studio 2010 有更好的测试框架,并且需要更少的工作来编写测试用例。是否可以使用 VS2010 对嵌入式代码进行单元测试?将不胜感激有关如何执行此操作或逐步过程的示例。

如果没有,CppUnit/CxxTest如何与VS2010集成?我找不到关于如何实现这一点的明确文档。

最佳答案

您可以在 Visual Studio 中编译嵌入式软件。为平台特定功能和 Green Hills 特定功能创建 stub (如果有的话)。还要注意任何特定的 Green Hills 宏。您需要找到或创建等价物。

我在带有 wxWidgets 的 Visual Studio 2008 中使用 CppUnit。我没有尝试单独将 CppUnit 与 Visual Studio 2010 集成。

请记住,您希望将验证代码与嵌入代码分开。嵌入式代码应作为库和头文件导入到您的验证项目中。这使测试保持诚实(尽管我意识到您可能无法将 Green Hills 库与 Visual Studio 库链接起来)。否则使用 VS 构建嵌入式代码,但在构建步骤中作为单独的库。

如果可能,请围绕软件需求设计测试。之后,设计一些代码来行使公共(public)功能。请记住,开发人员不应该编写代码来满足测试,测试人员也不应该编写代码来满足开发人员的功能。 “如果存在,就测试一下。”或“如果使用它,请对其进行测试”。例如,平台可能有一个 DMA Controller 但没有使用它。

编辑 #1 -- 示例

在“嵌入”或实现中给出以下类:

class Title
{
public:
Title();
Title(const Title& rc);
virtual ~Title();
Title& operator= (const Title& rt);
const std::string& get_table_name(void) const;
const std::string& get_title_text(void) const;
void set_table_name(const std::string&);
void set_title_text(const std::string& new_text);
};

CppUnit 测试类看起来像:

#include "cppunit/extensions/HelperMacros.h"

class Test_Ing_Title
: public CPPUNIT_NS::TestFixture
{
//---------------------------------------------------------------------
// Friends
//---------------------------------------------------------------------
CPPUNIT_TEST_SUITE(Test_Ing_Title);
CPPUNIT_TEST(ing_name_field_testing);
CPPUNIT_TEST(copying);
CPPUNIT_TEST(table_name_testing);
CPPUNIT_TEST(test_id_field);
CPPUNIT_TEST(title_testing);
CPPUNIT_TEST(visitor_test);
CPPUNIT_TEST_SUITE_END();

//---------------------------------------------------------------------
// Public types
//---------------------------------------------------------------------
public:

//---------------------------------------------------------------------
// Public Constructors and Destructors
//---------------------------------------------------------------------
public:
//! Constructor - Default
Test_Ing_Title();

//! Copy Constructor
Test_Ing_Title(const Test_Ing_Title& n_obj);

//! Destructor
virtual ~Test_Ing_Title();

//---------------------------------------------------------------------
// Public Overloaded Operators
//---------------------------------------------------------------------
public:

//---------------------------------------------------------------------
// Public Methods
//---------------------------------------------------------------------
public:
//! Test cloning of the title record.
void cloning(void);

//! Test copying
void copying(void);

//! Test the name field getters and setters
void ing_name_field_testing(void);

//! Test the table name getters & setters
void table_name_testing(void);

void tearDown(void);

//! Test the ID field getters and setters.
void test_id_field(void);

//! Test the title getters and setters
void title_testing(void);

//! Test visitors to the title.
void visitor_test(void);
};

示例测试方法:

#include <stdafx.h>     // This line is required for precompiled headers on MSVC++.
#include <cppunit/TestCase.h>
#include <cppunit/extensions/HelperMacros.h>
#include <string>

void
Test_Ing_Title ::
title_testing(void)
{
static const char expected_title_text[] = "Ground Beef";
const std::string expected_title(expected_title_text);
std::string actual_title;
Ingredient::Records::Title ing_title;
ing_title.set_title_text(expected_title);
actual_title = ing_title.get_title_text();
CPPUNIT_ASSERT(actual_title == expected_title);
return;
}

在上面的例子中,测试类创建了一个要测试的类的实例,然后执行方法。关键是测试类与系统隔离,或者换句话说,测试类不影响被测系统。将测试代码放在一个单独的位置将有助于强调这个概念。将“嵌入式”代码视为只读。进行极端测试,坚守阵地,产品返回数量的减少将是您的返回(并增加公司的利润)。

HTH.

关于c++ - 使用 Visual Studio 2010 对嵌入式 C++ 代码进行单元测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5434769/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com