Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Function get

boost::unit_test::framework::get — This function provides access to a test unit by id and type combination. It will throw if no test unit located.

Synopsis

// In header: <boost/test/framework.hpp>


test_unit & get(test_unit_id tu_id, test_unit_type tu_type);

Description

Parameters:

tu_id

id of a test unit to locate

tu_type

type of a test unit to locate

Returns:

located test unit


PrevUpHomeNext