Boost C++ Libraries Home Libraries People FAQ More

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