mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-31 12:17:11 +01:00 
			
		
		
		
	Write stdOut/stdErr for each test car in JUnit reporter (for GitHub #5)
This commit is contained in:
		| @@ -35,6 +35,8 @@ namespace Catch { | ||||
|             std::string m_status; | ||||
|             std::string m_className; | ||||
|             std::string m_name; | ||||
|             std::string m_stdOut; | ||||
|             std::string m_stdErr; | ||||
|             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 ) { | ||||
|             TestCaseStats& testCaseStats = m_currentStats->m_testCaseStats.back(); | ||||
|             testCaseStats.m_stdOut = stdOut; | ||||
|             testCaseStats.m_stdErr = stdErr; | ||||
|             if( !stdOut.empty() ) | ||||
|                 m_stdOut << stdOut << "\n"; | ||||
|             if( !stdErr.empty() ) | ||||
| @@ -198,6 +203,13 @@ namespace Catch { | ||||
|                 xml.writeAttribute( "time", "tbd" ); | ||||
|  | ||||
|                 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 ); | ||||
|             } | ||||
|         } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Phil Nash
					Phil Nash