libwreport
3.29
|
Simple default implementation of TestController. More...
#include <testrunner.h>
Public Member Functions | |
SimpleTestController (wreport::term::Terminal &output) | |
bool | test_case_begin (const TestCase &test_case, const TestCaseResult &test_case_result) override |
Called before running a test case. More... | |
void | test_case_end (const TestCase &test_case, const TestCaseResult &test_case_result) override |
Called after running a test case. | |
bool | test_method_begin (const TestMethod &test_method, const TestMethodResult &test_method_result) override |
Called before running a test method. More... | |
void | test_method_end (const TestMethod &test_method, const TestMethodResult &test_method_result) override |
Called after running a test method. | |
![]() | |
bool | test_method_should_run (const std::string &fullname) const |
Data Fields | |
wreport::term::Terminal & | output |
![]() | |
std::string | allowlist |
Any method not matching this glob expression will not be run. | |
std::string | blocklist |
Any method matching this glob expression will not be run. | |
Simple default implementation of TestController.
It does progress printing to stdout and basic glob-based test method filtering.
|
overridevirtual |
Called before running a test case.
Reimplemented from wreport::tests::TestController.
|
overridevirtual |
Called before running a test method.
Reimplemented from wreport::tests::TestController.