mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-04 05:59:32 +01:00 
			
		
		
		
	* Units from <ratio> are no longer redeclared in our own namespace * The default clock is `steady_clock`, not `high_resolution_clock`, because, as HH says "high_resolution_clock is useless. If you want measure the passing of time, use steady_clock. If you want user friendly time, use system_clock". * Benchmarking support is opt-in, not opt-out, to avoid the large (~10%) compile time penalty. * Benchmarking-related options in CLI are always present, to decrease the amount of code that is only compiled conditionally and making the whole shebang more maintainble.
		
			
				
	
	
		
			68 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 *  Created by Martin on 14/11/2017.
 | 
						|
 *
 | 
						|
 *  Distributed under the Boost Software License, Version 1.0. (See accompanying
 | 
						|
 *  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 | 
						|
 */
 | 
						|
#ifndef TWOBLUECUBES_CATCH_REPORTER_XML_H_INCLUDED
 | 
						|
#define TWOBLUECUBES_CATCH_REPORTER_XML_H_INCLUDED
 | 
						|
 | 
						|
#include "catch_reporter_bases.hpp"
 | 
						|
 | 
						|
#include "../internal/catch_xmlwriter.h"
 | 
						|
#include "../internal/catch_timer.h"
 | 
						|
 | 
						|
 | 
						|
namespace Catch {
 | 
						|
    class XmlReporter : public StreamingReporterBase<XmlReporter> {
 | 
						|
    public:
 | 
						|
        XmlReporter(ReporterConfig const& _config);
 | 
						|
 | 
						|
        ~XmlReporter() override;
 | 
						|
 | 
						|
        static std::string getDescription();
 | 
						|
 | 
						|
        virtual std::string getStylesheetRef() const;
 | 
						|
 | 
						|
        void writeSourceInfo(SourceLineInfo const& sourceInfo);
 | 
						|
 | 
						|
    public: // StreamingReporterBase
 | 
						|
 | 
						|
        void noMatchingTestCases(std::string const& s) override;
 | 
						|
 | 
						|
        void testRunStarting(TestRunInfo const& testInfo) override;
 | 
						|
 | 
						|
        void testGroupStarting(GroupInfo const& groupInfo) override;
 | 
						|
 | 
						|
        void testCaseStarting(TestCaseInfo const& testInfo) override;
 | 
						|
 | 
						|
        void sectionStarting(SectionInfo const& sectionInfo) override;
 | 
						|
 | 
						|
        void assertionStarting(AssertionInfo const&) override;
 | 
						|
 | 
						|
        bool assertionEnded(AssertionStats const& assertionStats) override;
 | 
						|
 | 
						|
        void sectionEnded(SectionStats const& sectionStats) override;
 | 
						|
 | 
						|
        void testCaseEnded(TestCaseStats const& testCaseStats) override;
 | 
						|
 | 
						|
        void testGroupEnded(TestGroupStats const& testGroupStats) override;
 | 
						|
 | 
						|
        void testRunEnded(TestRunStats const& testRunStats) override;
 | 
						|
 | 
						|
#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
 | 
						|
        void benchmarkStarting(BenchmarkInfo const&) override;
 | 
						|
        void benchmarkEnded(BenchmarkStats<> const&) override;
 | 
						|
        void benchmarkFailed(std::string const&) override;
 | 
						|
#endif // CATCH_CONFIG_ENABLE_BENCHMARKING
 | 
						|
 | 
						|
    private:
 | 
						|
        Timer m_testCaseTimer;
 | 
						|
        XmlWriter m_xml;
 | 
						|
        int m_sectionDepth = 0;
 | 
						|
    };
 | 
						|
 | 
						|
} // end namespace Catch
 | 
						|
 | 
						|
#endif // TWOBLUECUBES_CATCH_REPORTER_XML_H_INCLUDED
 |