6

我想记录更多关于 BOOST 断言失败的数据。不确定这是否可能以及如何。

BOOST_AUTO_TEST_CASE( TestCase1 )
{
    Data d;

    d.fillUp(...);

    d.operation1(...);
    BOOST_CHECK(d == ...);

    d.operation2(...);
    BOOST_CHECK(d == ...);

    ...

    if( /* anything above failed */)
    {
        log << d;
    }
}

我对最后一个条件有问题。你能建议吗?我希望错误日志表明发生断言时 Data 对象中的条件是什么。理想情况下,我希望它们被转储一次,即使测试用例中发生了多个断言。

4

1 回答 1

5

我正在做以下事情来完成你想要的:

BOOST_CHECK_MESSAGE( current_test_passing(), d);

使用我刚刚添加到我的测试辅助函数集合中的以下函数:

#include <boost/test/results_collector.hpp>

inline bool current_test_passing()
{
  using namespace boost::unit_test;
  test_case::id_t id = framework::current_test_case().p_id;
  test_results rez = results_collector.results(id);
  return rez.passed();
}

我发现与 BOOST_REQUIRE_... 结合使用的循环很有用,因此我可以快速查看许多检查中的哪一个特定迭代失败,而无需在每次检查中添加“i =”消息:

for (int i=0; i < HUGE_NUMBER; ++i) {
  … many checks …
  BOOST_REQUIRE_MESSAGE( current_test_passing(), "FAILED i=" << i );
}
于 2014-02-28T18:20:39.450 回答