在Boost.Test中,如何获取当前测试的名称?

时间:2012-05-13 19:03:31

标签: boost boost-test

Boost.Test中,如何获取当前自动测试用例的名称?

示例:

#include <boost/test/unit_test.hpp>
BOOST_AUTO_TEST_CASE(MyTest)
{
  std::cerr << "Starting " << test_name << std::endl;
  // lots of code here
  std::cerr << "Ending " << test_name << std::endl;
}

在示例中,我希望变量test_name包含“MyTest”。

2 个答案:

答案 0 :(得分:17)

可以为此目的调用未记录的*函数。以下行将当前测试的名称刷新为cerr

#include <boost/test/framework.hpp>

...

std::cerr << boost::unit_test::framework::current_test_case().p_name 
          << std::endl;

但请注意,在参数化测试的情况下,使用此API不会刷新参数。

您可能也对test checkpoints **感兴趣(这似乎是您想要做的。)

#include <boost/test/included/unit_test.hpp>

...

BOOST_AUTO_TEST_CASE(MyTest)
{
  BOOST_TEST_CHECKPOINT("Starting");
  // lots of code here
  BOOST_TEST_CHECKPOINT("Ending");
}

修改

*现在记录了current_test_case()功能,请参阅the official Boost documentation

** BOOST_TEST_CHECKPOINT以前称为BOOST_CHECKPOINT。请参阅Boost changelog (1.35.0)

答案 1 :(得分:0)

A different question about suite names提供了一种提取名称的方法,而不仅仅是打印它:

auto test_name = std::string(boost::unit_test::framework::current_test_case().p_name)