OTest2
A C++ testing framework
|
Generic interface of a runner filter. More...
#include <runnerfilter.h>
Public Member Functions | |
RunnerFilter (const RunnerFilter &)=delete | |
RunnerFilter & | operator= (const RunnerFilter &)=delete |
RunnerFilter () | |
Ctor. More... | |
virtual | ~RunnerFilter () |
Dtor. More... | |
virtual bool | filterPath (const TagsStack &path_) const noexcept=0 |
Check whether the path should be filtered. More... | |
Generic interface of a runner filter.
The runner filter allows filtering of suites and test cases. So the user can specify only some of the test which he wants to run.
Definition at line 35 of file runnerfilter.h.
|
delete |
OTest2::RunnerFilter::RunnerFilter | ( | ) |
Ctor.
Definition at line 24 of file runnerfilter.cpp.
|
virtual |
Dtor.
Definition at line 28 of file runnerfilter.cpp.
|
pure virtualnoexcept |
Check whether the path should be filtered.
path_ | Stack of names and tags of the current object and its ancestors. |
Implemented in OTest2::RunnerFilterTags, OTest2::RunnerFilterEntire, and OTest2::RunnerFilterUntagged.
|
delete |