Elaboradar  0.1
 Tutto Classi Namespace File Funzioni Variabili Tipi enumerati (enum) Gruppi
TestMethod& radarelab::utils::tests::TestCase::add_method ( const std::string &  name)
inline

Register a new test method, with the actual test function to be added later.

Definizione alla linea 732 del file tests.h.

Referenzia methods.

Referenziato da radarelab::utils::tests::FixtureTestCase< FIXTURE >::add_method().

733  {
734  methods.emplace_back(name);
735  return methods.back();
736  }
std::vector< TestMethod > methods
All registered test methods.
Definition: tests.h:658
std::string name
Name of the test case.
Definition: tests.h:655