Lines Matching refs:TestSpec
19 TestSpec::Pattern::Pattern( std::string const& name ) in Pattern()
23 TestSpec::Pattern::~Pattern() = default;
25 std::string const& TestSpec::Pattern::name() const { in name()
30 TestSpec::NamePattern::NamePattern( std::string const& name, std::string const& filterString ) in NamePattern()
35 bool TestSpec::NamePattern::matches( TestCaseInfo const& testCase ) const { in matches()
40 TestSpec::TagPattern::TagPattern( std::string const& tag, std::string const& filterString ) in TagPattern()
45 bool TestSpec::TagPattern::matches( TestCaseInfo const& testCase ) const { in matches()
52 TestSpec::ExcludedPattern::ExcludedPattern( PatternPtr const& underlyingPattern ) in ExcludedPattern()
57 bool TestSpec::ExcludedPattern::matches( TestCaseInfo const& testCase ) const { in matches()
62 bool TestSpec::Filter::matches( TestCaseInfo const& testCase ) const { in matches()
66 std::string TestSpec::Filter::name() const { in name()
74 bool TestSpec::hasFilters() const { in hasFilters()
78 bool TestSpec::matches( TestCaseInfo const& testCase ) const { in matches()
82 …TestSpec::Matches TestSpec::matchesByFilter( std::vector<TestCase> const& testCases, IConfig const… in matchesByFilter()
95 const TestSpec::vectorStrings& TestSpec::getInvalidArgs() const{ in getInvalidArgs()