mirror of
https://github.com/catchorg/Catch2.git
synced 2025-05-29 16:09:30 +00:00
First cut of tags support
This commit is contained in:
parent
dea756f699
commit
fc1baac7f5
7 changed files with 168 additions and 13 deletions
|
@ -123,6 +123,10 @@ namespace Catch {
|
|||
if( it == itEnd )
|
||||
return false;
|
||||
}
|
||||
else if( m_exclusionFilters.empty() ) {
|
||||
return !testCase.isHidden();
|
||||
}
|
||||
|
||||
std::vector<TestCaseFilter>::const_iterator it = m_exclusionFilters.begin();
|
||||
std::vector<TestCaseFilter>::const_iterator itEnd = m_exclusionFilters.end();
|
||||
for(; it != itEnd; ++it )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue