mirror of
https://github.com/catchorg/Catch2.git
synced 2025-05-25 14:09:26 +00:00
Removed use of std::copy_if (as it's limited to c++11)
This commit is contained in:
parent
e73583d556
commit
8a05f46a37
2 changed files with 13 additions and 21 deletions
|
@ -53,15 +53,6 @@ namespace Catch {
|
|||
bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config ) {
|
||||
return testSpec.matches( testCase ) && ( config.allowThrows() || !testCase.throws() );
|
||||
}
|
||||
struct TestMatcher {
|
||||
TestMatcher( TestSpec const& testSpec, bool allowThrows ) : m_testSpec( testSpec ), m_allowThrows( allowThrows ) {}
|
||||
|
||||
bool operator()( TestCase const& testCase ) const {
|
||||
return m_testSpec.matches( testCase ) && ( m_allowThrows || !testCase.throws() );
|
||||
}
|
||||
TestSpec m_testSpec;
|
||||
bool m_allowThrows;
|
||||
};
|
||||
|
||||
void enforceNoDuplicateTestCases( std::vector<TestCase> const& functions ) {
|
||||
std::set<TestCase> seenFunctions;
|
||||
|
@ -82,7 +73,12 @@ namespace Catch {
|
|||
|
||||
std::vector<TestCase> filterTests( std::vector<TestCase> const& testCases, TestSpec const& testSpec, IConfig const& config ) {
|
||||
std::vector<TestCase> filtered;
|
||||
std::copy_if( testCases.begin(), testCases.end(), std::back_inserter( filtered ), TestMatcher( testSpec, config.allowThrows() ) );
|
||||
filtered.reserve( testCases.size() );
|
||||
for( std::vector<TestCase>::const_iterator it = testCases.begin(), itEnd = testCases.end();
|
||||
it != itEnd;
|
||||
++it )
|
||||
if( matchTest( *it, testSpec, config ) )
|
||||
filtered.push_back( *it );
|
||||
return filtered;
|
||||
}
|
||||
std::vector<TestCase> const& getAllTestCasesSorted( IConfig const& config ) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue