mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
27 lines
532 B
C++
27 lines
532 B
C++
#ifndef ARABICA_TEST_RUNNER_HPP
|
|
#define ARABICA_TEST_RUNNER_HPP
|
|
|
|
#include "../CppUnit/framework/Test.h"
|
|
#include <vector>
|
|
|
|
class TestRunner
|
|
{
|
|
protected:
|
|
bool verbose_;
|
|
bool m_wait;
|
|
std::vector<std::pair<std::string,Test *> > m_mappings;
|
|
|
|
public:
|
|
TestRunner() : m_wait(false), verbose_(true) {}
|
|
~TestRunner();
|
|
|
|
void run(int ac, const char **av);
|
|
void addTest(std::string name, Test *test)
|
|
{ m_mappings.push_back(std::make_pair(name, test)); }
|
|
|
|
protected:
|
|
void run(Test *test);
|
|
void printBanner();
|
|
}; // TestRunner;
|
|
|
|
#endif
|