在测试之间增强测试夹具对象清除

时间:2009-12-21 21:27:43

标签: c++ unit-testing boost

我遇到了升压单元测试的问题。基本上我创建了一个fixture,它是一个单元测试资源缓存的套件的一部分。我的主要问题是测试之间资源缓存变空。因此,第一个测试缓存通过的测试然后第二个测试将失败,因为插入缓存的第一个测试的数据不再存在。为了解决这个问题,我不得不重新插入第二次测试的数据。这是打算还是我做错了?这是代码。最后两个测试是问题所在。


#include "UnitTestIncludes.hpp"
#include "ResourceCache.hpp"
#include <SFML/Graphics.hpp>

struct ResourceCacheFixture
{
    ResourceCacheFixture()
    {
        BOOST_TEST_MESSAGE("Setup Fixture...");
        key = "graysqr";
        imgpath = "../images/graysqr.png";
    }

    ResourceCache<sf::Image, ImageGenerator> imgCache;
    std::string key;
    std::string imgpath;
};

// Start of Test Suite

BOOST_FIXTURE_TEST_SUITE(ResourceCacheTestSuite, ResourceCacheFixture)

// Start of tests

BOOST_AUTO_TEST_CASE(ImageGeneratorTest)
{
    ImageGenerator imgGen;
    BOOST_REQUIRE(imgGen("../images/graysqr.png"));

}

BOOST_AUTO_TEST_CASE(FontGeneratorTest)
{
    FontGenerator fntGen;
    BOOST_REQUIRE(fntGen("../fonts/arial.ttf"));
}

// This is where the issue is.  The data inserted in this test is lost for when I do
// the GetResourceTest.  It is fixed here by reinserting the data.
BOOST_AUTO_TEST_CASE(LoadResourceTest)
{
    bool result = imgCache.load_resource(key, imgpath);
    BOOST_REQUIRE(result);
}

BOOST_AUTO_TEST_CASE(GetResourceTest)
{
    imgCache.load_resource(key, imgpath);
    BOOST_REQUIRE(imgCache.get_resource(key));
}

// End of Tests

// End of Test Suite
BOOST_AUTO_TEST_SUITE_END()

1 个答案:

答案 0 :(得分:7)

意图。单元测试的关键原则之一是每个测试都是隔离运行。应该给它一个干净的环境来运行,之后应该再次清理那个环境,这样测试就不会相互依赖。

使用Boost.Test,您可以指定从命令行运行哪些测试,因此您不必运行整个套件。如果你的测试依赖于彼此,或者他们的执行顺序,那么这将导致测试失败。

灯具旨在设置运行测试所需的环境。如果您需要在测试运行之前创建资源,则夹具应该创建它们,然后再次清理它们。