mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 21:36:11 +01:00
Provide ConsoleReporter declaration with EXTERNAL_INTERFACES
Related to #991
This commit is contained in:
parent
a096e4b3f2
commit
98d4c49d1c
@ -248,6 +248,7 @@ set(REPORTER_HEADERS
|
|||||||
${HEADER_DIR}/reporters/catch_reporter_automake.hpp
|
${HEADER_DIR}/reporters/catch_reporter_automake.hpp
|
||||||
${HEADER_DIR}/reporters/catch_reporter_bases.hpp
|
${HEADER_DIR}/reporters/catch_reporter_bases.hpp
|
||||||
${HEADER_DIR}/reporters/catch_reporter_compact.h
|
${HEADER_DIR}/reporters/catch_reporter_compact.h
|
||||||
|
${HEADER_DIR}/reporters/catch_reporter_console.h
|
||||||
${HEADER_DIR}/reporters/catch_reporter_junit.h
|
${HEADER_DIR}/reporters/catch_reporter_junit.h
|
||||||
${HEADER_DIR}/reporters/catch_reporter_multi.h
|
${HEADER_DIR}/reporters/catch_reporter_multi.h
|
||||||
${HEADER_DIR}/reporters/catch_reporter_tap.hpp
|
${HEADER_DIR}/reporters/catch_reporter_tap.hpp
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
|
|
||||||
// Allow users to base their work off existing reporters
|
// Allow users to base their work off existing reporters
|
||||||
#include "../reporters/catch_reporter_compact.h"
|
#include "../reporters/catch_reporter_compact.h"
|
||||||
|
#include "../reporters/catch_reporter_console.h"
|
||||||
#include "../reporters/catch_reporter_junit.h"
|
#include "../reporters/catch_reporter_junit.h"
|
||||||
#include "../reporters/catch_reporter_xml.h"
|
#include "../reporters/catch_reporter_xml.h"
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
83
include/reporters/catch_reporter_console.h
Normal file
83
include/reporters/catch_reporter_console.h
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
/*
|
||||||
|
* Created by Phil on 5/12/2012.
|
||||||
|
* Copyright 2012 Two Blue Cubes Ltd. All rights reserved.
|
||||||
|
*
|
||||||
|
* 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_CONSOLE_H_INCLUDED
|
||||||
|
#define TWOBLUECUBES_CATCH_REPORTER_CONSOLE_H_INCLUDED
|
||||||
|
|
||||||
|
#include "catch_reporter_bases.hpp"
|
||||||
|
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
#pragma warning(push)
|
||||||
|
#pragma warning(disable:4061) // Not all labels are EXPLICITLY handled in switch
|
||||||
|
// Note that 4062 (not all labels are handled
|
||||||
|
// and default is missing) is enabled
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
namespace Catch {
|
||||||
|
// Fwd decls
|
||||||
|
struct SummaryColumn;
|
||||||
|
class TablePrinter;
|
||||||
|
|
||||||
|
struct ConsoleReporter : StreamingReporterBase<ConsoleReporter> {
|
||||||
|
std::unique_ptr<TablePrinter> m_tablePrinter;
|
||||||
|
|
||||||
|
ConsoleReporter(ReporterConfig const& config);
|
||||||
|
~ConsoleReporter() override;
|
||||||
|
static std::string getDescription();
|
||||||
|
|
||||||
|
void noMatchingTestCases(std::string const& spec) override;
|
||||||
|
|
||||||
|
void assertionStarting(AssertionInfo const&) override;
|
||||||
|
|
||||||
|
bool assertionEnded(AssertionStats const& _assertionStats) override;
|
||||||
|
|
||||||
|
void sectionStarting(SectionInfo const& _sectionInfo) override;
|
||||||
|
void sectionEnded(SectionStats const& _sectionStats) override;
|
||||||
|
|
||||||
|
|
||||||
|
void benchmarkStarting(BenchmarkInfo const& info) override;
|
||||||
|
void benchmarkEnded(BenchmarkStats const& stats) override;
|
||||||
|
|
||||||
|
void testCaseEnded(TestCaseStats const& _testCaseStats) override;
|
||||||
|
void testGroupEnded(TestGroupStats const& _testGroupStats) override;
|
||||||
|
void testRunEnded(TestRunStats const& _testRunStats) override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
void lazyPrint();
|
||||||
|
|
||||||
|
void lazyPrintWithoutClosingBenchmarkTable();
|
||||||
|
void lazyPrintRunInfo();
|
||||||
|
void lazyPrintGroupInfo();
|
||||||
|
void printTestCaseAndSectionHeader();
|
||||||
|
|
||||||
|
void printClosedHeader(std::string const& _name);
|
||||||
|
void printOpenHeader(std::string const& _name);
|
||||||
|
|
||||||
|
// if string has a : in first line will set indent to follow it on
|
||||||
|
// subsequent lines
|
||||||
|
void printHeaderString(std::string const& _string, std::size_t indent = 0);
|
||||||
|
|
||||||
|
|
||||||
|
void printTotals(Totals const& totals);
|
||||||
|
void printSummaryRow(std::string const& label, std::vector<SummaryColumn> const& cols, std::size_t row);
|
||||||
|
|
||||||
|
void printTotalsDivider(Totals const& totals);
|
||||||
|
void printSummaryDivider();
|
||||||
|
|
||||||
|
private:
|
||||||
|
bool m_headerPrinted = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // end namespace Catch
|
||||||
|
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
#pragma warning(pop)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif // TWOBLUECUBES_CATCH_REPORTER_CONSOLE_H_INCLUDED
|
Loading…
Reference in New Issue
Block a user