parent
b6f62af7d1
commit
1e59ccee41
25 changed files with 97 additions and 93 deletions
|
@ -33,7 +33,7 @@ namespace Catch {
|
|||
public:
|
||||
NamePattern( std::string const& name );
|
||||
virtual ~NamePattern() = default;
|
||||
virtual bool matches( TestCaseInfo const& testCase ) const;
|
||||
virtual bool matches( TestCaseInfo const& testCase ) const override;
|
||||
private:
|
||||
WildcardPattern m_wildcardPattern;
|
||||
};
|
||||
|
@ -42,7 +42,7 @@ namespace Catch {
|
|||
public:
|
||||
TagPattern( std::string const& tag );
|
||||
virtual ~TagPattern() = default;
|
||||
virtual bool matches( TestCaseInfo const& testCase ) const;
|
||||
virtual bool matches( TestCaseInfo const& testCase ) const override;
|
||||
private:
|
||||
std::string m_tag;
|
||||
};
|
||||
|
@ -51,7 +51,7 @@ namespace Catch {
|
|||
public:
|
||||
ExcludedPattern( PatternPtr const& underlyingPattern );
|
||||
virtual ~ExcludedPattern() = default;
|
||||
virtual bool matches( TestCaseInfo const& testCase ) const;
|
||||
virtual bool matches( TestCaseInfo const& testCase ) const override;
|
||||
private:
|
||||
PatternPtr m_underlyingPattern;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue