Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
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