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

PrevUpHomeNext

Struct context_generator

boost::unit_test::framework::context_generator

Synopsis

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


struct context_generator {

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

Description

context_generator public member functions

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

PrevUpHomeNext