Boost C++ Libraries Home Libraries People FAQ More

PrevUpHome
BOOST_TEST_PASSPOINT

BOOST_TEST_PASSPOINT() is similar to BOOST_TEST_CHECKPOINT, but only registers a source file location with the test runner.

BOOST_AUTO_TEST_CASE(example_passpoint)
{
    BOOST_TEST_PASSPOINT();

    throw std::runtime_error("Oops");
}


PrevUpHome