• Home
  • Raw
  • Download

Lines Matching refs:testCaseInfo

2828         friend void setTags( TestCaseInfo& testCaseInfo, std::set<std::string> const& tags );
5312 TestCaseInfo const& testCaseInfo = it->getTestCaseInfo(); in listTests() local
5313 Colour::Code colour = testCaseInfo.isHidden() in listTests()
5318 Catch::cout() << Text( testCaseInfo.name, nameAttr ) << std::endl; in listTests()
5319 if( !testCaseInfo.tags.empty() ) in listTests()
5320 Catch::cout() << Text( testCaseInfo.tagsAsString, tagsAttr ) << std::endl; in listTests()
5340 TestCaseInfo const& testCaseInfo = it->getTestCaseInfo(); in listTestsNamesOnly() local
5341 Catch::cout() << testCaseInfo.name << std::endl; in listTestsNamesOnly()
6036 TestCaseInfo const& testCaseInfo = m_activeTestCase->getTestCaseInfo(); in handleFatalErrorCondition() local
6037 … SectionInfo testCaseSection( testCaseInfo.lineInfo, testCaseInfo.name, testCaseInfo.description ); in handleFatalErrorCondition()
6067 TestCaseInfo const& testCaseInfo = m_activeTestCase->getTestCaseInfo(); in runCurrentTest() local
6068 … SectionInfo testCaseSection( testCaseInfo.lineInfo, testCaseInfo.name, testCaseInfo.description ); in runCurrentTest()
6073 …m_lastAssertionInfo = AssertionInfo( "TEST_CASE", testCaseInfo.lineInfo, "", ResultDisposition::No… in runCurrentTest()
6102 if( testCaseInfo.okToFail() ) { in runCurrentTest()
7381 void setTags( TestCaseInfo& testCaseInfo, std::set<std::string> const& tags ) in setTags() argument
7383 testCaseInfo.tags = tags; in setTags()
7384 testCaseInfo.lcaseTags.clear(); in setTags()
7390testCaseInfo.properties = static_cast<TestCaseInfo::SpecialProperties>( testCaseInfo.properties | … in setTags()
7391 testCaseInfo.lcaseTags.insert( lcaseTag ); in setTags()
7393 testCaseInfo.tagsAsString = oss.str(); in setTags()