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

Class test_unit_generator

boost::unit_test::test_unit_generator

Synopsis

// In header: <boost/test/tree/test_unit.hpp>


class test_unit_generator {
public:
  // construct/copy/destruct
  ~test_unit_generator();

  // public member functions
  virtual test_unit * next() const = 0;
};

Description

test_unit_generator public construct/copy/destruct

  1. ~test_unit_generator();

test_unit_generator public member functions

  1. virtual test_unit * next() const = 0;

PrevUpHomeNext