Capture test case hidden status in member variable

This commit is contained in:
Phil Nash 2012-09-12 18:40:24 +01:00
parent f7418eb2dd
commit dea756f699
2 changed files with 11 additions and 6 deletions

View file

@ -44,7 +44,8 @@ namespace Catch {
Ptr<ITestCase> m_test;
std::string m_name;
std::string m_description;
SourceLineInfo m_lineInfo;
SourceLineInfo m_lineInfo;
bool m_isHidden;
};
}