Lines Matching refs:stream
3396 virtual std::ostream& stream() const = 0;
3438 virtual std::ostream& stream() const = 0;
3447 virtual std::ostream& stream() const CATCH_OVERRIDE;
3457 virtual std::ostream& stream() const CATCH_OVERRIDE;
3468 virtual std::ostream& stream() const CATCH_OVERRIDE;
3584 virtual std::ostream& stream() const { return m_stream->stream(); } in stream() function in Catch::Config
5072 : m_stream( &_fullConfig->stream() ), m_fullConfig( _fullConfig ) {} in ReporterConfig()
5077 std::ostream& stream() const { return *m_stream; } in stream() function
5879 StreamRedirect( std::ostream& stream, std::string& targetString ) in StreamRedirect() argument
5880 : m_stream( stream ), in StreamRedirect()
5881 m_prevBuf( stream.rdbuf() ), in StreamRedirect()
5884 stream.rdbuf( m_oss.rdbuf() ); in StreamRedirect()
6888 std::ostream& FileStream::stream() const { in stream() function in Catch::FileStream
6904 std::ostream& DebugOutStream::stream() const { in stream() function in Catch::DebugOutStream
6914 std::ostream& CoutStream::stream() const { in stream() function in Catch::CoutStream
8597 stream( _config.stream() ) in StreamingReporterBase()
8645 std::ostream& stream; member
8702 stream( _config.stream() ) in CumulativeReporterBase()
8783 std::ostream& stream; member
9027 stream() << m_indent << "<" << name; in startElement()
9044 stream() << "/>\n"; in endElement()
9048 stream() << m_indent << "</" << m_tags.back() << ">\n"; in endElement()
9056 … stream() << " " << name << "=\"" << XmlEncode( attribute, XmlEncode::ForAttributes ) << "\""; in writeAttribute()
9061 stream() << " " << name << "=\"" << ( attribute ? "true" : "false" ) << "\""; in writeAttribute()
9077 stream() << m_indent; in writeText()
9078 stream() << XmlEncode( text ); in writeText()
9086 stream() << m_indent << "<!--" << text << "-->"; in writeComment()
9093 stream() << "\n"; in writeBlankLine()
9105 std::ostream& stream() { in stream() function in Catch::XmlWriter
9111 stream() << ">\n"; in ensureTagClosed()
9118 stream() << "\n"; in newlineIfNecessary()
9170 m_xml.setStream( stream ); in testRunStarting()
9338 xml( _config.stream() ) in JunitReporter()
9553 stream << "No test cases matched '" << spec << "'" << std::endl; in noMatchingTestCases()
9573 AssertionPrinter printer( stream, _assertionStats, printInfoMessages ); in assertionEnded()
9575 stream << std::endl; in assertionEnded()
9588 stream << "\nNo assertions in section"; in sectionEnded()
9590 stream << "\nNo assertions in test case"; in sectionEnded()
9591 stream << " '" << _sectionStats.sectionInfo.name << "'\n" << std::endl; in sectionEnded()
9595 … stream << "Completed in " << _sectionStats.durationInSeconds << "s" << std::endl; in sectionEnded()
9600 …stream << _sectionStats.sectionInfo.name << " completed in " << _sectionStats.durationInSeconds <<… in sectionEnded()
9612 stream << "Summary for group '" << _testGroupStats.groupInfo.name << "':\n"; in testGroupEnded()
9614 stream << "\n" << std::endl; in testGroupEnded()
9621 stream << std::endl; in testRunEnded()
9631 : stream( _stream ), in AssertionPrinter()
9706 stream << "\n"; in print()
9712 stream << "\n"; in print()
9721 stream << passOrFail << ":\n"; in printResultType()
9727 stream << " "; in printOriginalExpression()
9728 stream << result.getExpressionInMacro(); in printOriginalExpression()
9729 stream << "\n"; in printOriginalExpression()
9734 stream << "with expansion:\n"; in printReconstructedExpression()
9736 … stream << Text( result.getExpandedExpression(), TextAttributes().setIndent(2) ) << "\n"; in printReconstructedExpression()
9741 stream << messageLabel << ":" << "\n"; in printMessage()
9747 stream << Text( it->message, TextAttributes().setIndent(2) ) << "\n"; in printMessage()
9752 stream << result.getSourceInfo() << ": "; in printSourceInfo()
9755 std::ostream& stream; member in Catch::ConsoleReporter::AssertionPrinter
9779 stream << "\n" << getLineOfChars<'~'>() << "\n"; in lazyPrintRunInfo()
9781 stream << currentTestRunInfo->name in lazyPrintRunInfo()
9786 stream << "Randomness seeded to: " << m_config->rngSeed() << "\n\n"; in lazyPrintRunInfo()
9813 stream << getLineOfChars<'-'>() << "\n"; in printTestCaseAndSectionHeader()
9815 stream << lineInfo << "\n"; in printTestCaseAndSectionHeader()
9817 stream << getLineOfChars<'.'>() << "\n" << std::endl; in printTestCaseAndSectionHeader()
9822 stream << getLineOfChars<'.'>() << "\n"; in printClosedHeader()
9825 stream << getLineOfChars<'-'>() << "\n"; in printOpenHeader()
9840 stream << Text( _string, TextAttributes() in printHeaderString()
9873 stream << Colour( Colour::Warning ) << "No tests ran\n"; in printTotals()
9876 stream << Colour( Colour::ResultSuccess ) << "All tests passed"; in printTotals()
9877 stream << " (" in printTotals()
9906 stream << label << ": "; in printSummaryRow()
9908 stream << value; in printSummaryRow()
9910 stream << Colour( Colour::Warning ) << "- none -"; in printSummaryRow()
9913 stream << Colour( Colour::LightGrey ) << " | "; in printSummaryRow()
9914 stream << Colour( it->colour ) in printSummaryRow()
9918 stream << "\n"; in printSummaryRow()
9944 stream << Colour( Colour::Error ) << std::string( failedRatio, '=' ); in printTotalsDivider()
9945 … stream << Colour( Colour::ResultExpectedFailure ) << std::string( failedButOkRatio, '=' ); in printTotalsDivider()
9947 stream << Colour( Colour::ResultSuccess ) << std::string( passedRatio, '=' ); in printTotalsDivider()
9949 stream << Colour( Colour::Success ) << std::string( passedRatio, '=' ); in printTotalsDivider()
9952 … stream << Colour( Colour::Warning ) << std::string( CATCH_CONFIG_CONSOLE_WIDTH-1, '=' ); in printTotalsDivider()
9954 stream << "\n"; in printTotalsDivider()
9957 stream << getLineOfChars<'-'>() << "\n"; in printSummaryDivider()
9992 stream << "No test cases matched '" << spec << "'" << std::endl; in noMatchingTestCases()
10010 AssertionPrinter printer( stream, _assertionStats, printInfoMessages ); in assertionEnded()
10013 stream << std::endl; in assertionEnded()
10019 stream << "\n" << std::endl; in testRunEnded()
10028 : stream( _stream ) in AssertionPrinter()
10119 stream << result.getSourceInfo() << ":"; in printSourceInfo()
10126 stream << " " << passOrFail; in printResultType()
10128 stream << ":"; in printResultType()
10133 stream << " " << issue; in printIssue()
10138 stream << ";"; in printExpressionWas()
10141 stream << " expression was:"; in printExpressionWas()
10149 stream << " " << result.getExpression(); in printOriginalExpression()
10157 stream << " for: "; in printReconstructedExpression()
10159 stream << result.getExpandedExpression(); in printReconstructedExpression()
10165 stream << " '" << itMessage->message << "'"; in printMessage()
10180 stream << " with " << pluralise( N, "message" ) << ":"; in printRemainingMessages()
10186 stream << " '" << itMessage->message << "'"; in printRemainingMessages()
10189 stream << " and"; in printRemainingMessages()
10196 std::ostream& stream; member in Catch::CompactReporter::AssertionPrinter
10217 stream << "No tests ran."; in printTotals()
10224 stream << in printTotals()
10231 stream << in printTotals()
10238 stream << in printTotals()
10244 stream << in printTotals()