mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 05:09:53 +01:00
Write stdOut/stdErr for each test car in JUnit reporter (for GitHub #5)
This commit is contained in:
parent
deb3e9d4c4
commit
fe6d1a5838
@ -35,6 +35,8 @@ namespace Catch {
|
|||||||
std::string m_status;
|
std::string m_status;
|
||||||
std::string m_className;
|
std::string m_className;
|
||||||
std::string m_name;
|
std::string m_name;
|
||||||
|
std::string m_stdOut;
|
||||||
|
std::string m_stdErr;
|
||||||
std::vector<TestStats> m_testStats;
|
std::vector<TestStats> m_testStats;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -148,6 +150,9 @@ namespace Catch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
virtual void EndTestCase( const Catch::TestCaseInfo&, const Totals&, const std::string& stdOut, const std::string& stdErr ) {
|
virtual void EndTestCase( const Catch::TestCaseInfo&, const Totals&, const std::string& stdOut, const std::string& stdErr ) {
|
||||||
|
TestCaseStats& testCaseStats = m_currentStats->m_testCaseStats.back();
|
||||||
|
testCaseStats.m_stdOut = stdOut;
|
||||||
|
testCaseStats.m_stdErr = stdErr;
|
||||||
if( !stdOut.empty() )
|
if( !stdOut.empty() )
|
||||||
m_stdOut << stdOut << "\n";
|
m_stdOut << stdOut << "\n";
|
||||||
if( !stdErr.empty() )
|
if( !stdErr.empty() )
|
||||||
@ -198,6 +203,13 @@ namespace Catch {
|
|||||||
xml.writeAttribute( "time", "tbd" );
|
xml.writeAttribute( "time", "tbd" );
|
||||||
|
|
||||||
OutputTestResult( xml, *it );
|
OutputTestResult( xml, *it );
|
||||||
|
|
||||||
|
std::string stdOut = trim( it->m_stdOut );
|
||||||
|
if( !stdOut.empty() )
|
||||||
|
xml.scopedElement( "system-out" ).writeText( stdOut );
|
||||||
|
std::string stdErr = trim( it->m_stdErr );
|
||||||
|
if( !stdErr.empty() )
|
||||||
|
xml.scopedElement( "system-err" ).writeText( stdErr );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user