aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/catch/catchcodeparser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/autotest/catch/catchcodeparser.h')
-rw-r--r--src/plugins/autotest/catch/catchcodeparser.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/autotest/catch/catchcodeparser.h b/src/plugins/autotest/catch/catchcodeparser.h
index b10a682087..005c704a07 100644
--- a/src/plugins/autotest/catch/catchcodeparser.h
+++ b/src/plugins/autotest/catch/catchcodeparser.h
@@ -46,12 +46,13 @@ private:
void handleIdentifier();
void handleTestCase(bool isScenario);
void handleParameterizedTestCase(bool isFixture);
- void handleFixtureTestCase();
+ void handleFixtureOrRegisteredTestCase(bool isFixture);
QString getStringLiteral(CPlusPlus::Kind &stoppedAtKind);
bool skipCommentsUntil(CPlusPlus::Kind nextExpectedKind); // moves currentIndex if succeeds
CPlusPlus::Kind skipUntilCorrespondingRParen(); // moves currentIndex
bool skipFixtureParameter();
+ bool skipFunctionParameter();
const QByteArray &m_source;
const CPlusPlus::LanguageFeatures &m_features;