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

ble*_*sjr 2 c++ boost unit-testing

我遇到了升压单元测试的问题.基本上我创建了一个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()
Run Code Online (Sandbox Code Playgroud)

jal*_*alf 7

它的目的是.单元测试的关键原则之一是每个测试都是孤立运行.它应该被给予一个干净的环境来运行,之后应该再次清理该环境,这样测试就不会相互依赖.

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

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