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 to view this page for the latest version.
PrevUpHomeNext

Struct context_generator

boost::unit_test::framework::context_generator

Synopsis

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


struct context_generator {
  // construct/copy/destruct
  context_generator();

  // public member functions
  bool is_empty() const;
  const_string next() const;
};

Description

context_generator public construct/copy/destruct

  1. context_generator();

context_generator public member functions

  1. bool is_empty() const;
    Is there any context?
  2. const_string next() const;
    Give me next frame; empty - last frame.

PrevUpHomeNext