Lines Matching refs:testCaseInfo
39 for( auto const& testCaseInfo : matchedTestCases ) { in listTests() local
40 Colour::Code colour = testCaseInfo.isHidden() in listTests()
45 Catch::cout() << Column( testCaseInfo.name ).initialIndent( 2 ).indent( 4 ) << "\n"; in listTests()
47 …Catch::cout() << Column( Catch::Detail::stringify( testCaseInfo.lineInfo ) ).indent(4) << std::end… in listTests()
48 std::string description = testCaseInfo.description; in listTests()
53 if( !testCaseInfo.tags.empty() ) in listTests()
54 Catch::cout() << Column( testCaseInfo.tagsAsString() ).indent( 6 ) << "\n"; in listTests()
68 for( auto const& testCaseInfo : matchedTestCases ) { in listTestsNamesOnly() local
70 if( startsWith( testCaseInfo.name, '#' ) ) in listTestsNamesOnly()
71 Catch::cout() << '"' << testCaseInfo.name << '"'; in listTestsNamesOnly()
73 Catch::cout() << testCaseInfo.name; in listTestsNamesOnly()
75 Catch::cout() << "\t@" << testCaseInfo.lineInfo; in listTestsNamesOnly()