| 10309 | TestSpec::ExcludedPattern::~ExcludedPattern() = default; |
| 10310 | |
| 10311 | TestSpec::NamePattern::NamePattern(std::string const &name) : m_wildcardPattern(toLower(name), CaseSensitive::No) { |
| 10312 | } |
| 10313 | bool TestSpec::NamePattern::matches(TestCaseInfo const &testCase) const { |
| 10314 | return m_wildcardPattern.matches(toLower(testCase.name)); |
| 10315 | } |