• Home
  • Raw
  • Download

Lines Matching refs:testCaseInfo

4780         friend void setTags( TestCaseInfo& testCaseInfo, std::vector<std::string> tags );
6330 void testCaseStarting(TestCaseInfo const& testCaseInfo) override;
11203 for( auto const& testCaseInfo : matchedTestCases ) { in listTests() local
11204 Colour::Code colour = testCaseInfo.isHidden() in listTests()
11209 Catch::cout() << Column( testCaseInfo.name ).initialIndent( 2 ).indent( 4 ) << "\n"; in listTests()
11211 …Catch::cout() << Column( Catch::Detail::stringify( testCaseInfo.lineInfo ) ).indent(4) << std::end… in listTests()
11212 std::string description = testCaseInfo.description; in listTests()
11217 if( !testCaseInfo.tags.empty() ) in listTests()
11218 Catch::cout() << Column( testCaseInfo.tagsAsString() ).indent( 6 ) << "\n"; in listTests()
11232 for( auto const& testCaseInfo : matchedTestCases ) { in listTestsNamesOnly() local
11234 if( startsWith( testCaseInfo.name, '#' ) ) in listTestsNamesOnly()
11235 Catch::cout() << '"' << testCaseInfo.name << '"'; in listTestsNamesOnly()
11237 Catch::cout() << testCaseInfo.name; in listTestsNamesOnly()
11239 Catch::cout() << "\t@" << testCaseInfo.lineInfo; in listTestsNamesOnly()
12873 auto const& testCaseInfo = m_activeTestCase->getTestCaseInfo(); in handleFatalErrorCondition() local
12874 SectionInfo testCaseSection(testCaseInfo.lineInfo, testCaseInfo.name); in handleFatalErrorCondition()
12912 auto const& testCaseInfo = m_activeTestCase->getTestCaseInfo(); in runCurrentTest() local
12913 SectionInfo testCaseSection(testCaseInfo.lineInfo, testCaseInfo.name); in runCurrentTest()
12918 …m_lastAssertionInfo = { "TEST_CASE"_sr, testCaseInfo.lineInfo, StringRef(), ResultDisposition::Nor… in runCurrentTest()
14039 void setTags( TestCaseInfo& testCaseInfo, std::vector<std::string> tags ) { in setTags() argument
14042 testCaseInfo.lcaseTags.clear(); in setTags()
14046testCaseInfo.properties = static_cast<TestCaseInfo::SpecialProperties>( testCaseInfo.properties | … in setTags()
14047 testCaseInfo.lcaseTags.push_back( lcaseTag ); in setTags()
14049 testCaseInfo.tags = std::move(tags); in setTags()
16810 void JunitReporter::testCaseStarting( TestCaseInfo const& testCaseInfo ) { in testCaseStarting() argument
16811 m_okToFail = testCaseInfo.okToFail(); in testCaseStarting()