Rename reporters to use .hpp suffix

I want to standardize _all_ of Catch2 headers on the `.hpp` suffix.
This commit is contained in:
Martin Hořeňovský 2020-04-04 21:53:23 +02:00
parent 151dccbd31
commit 54a7eb1aed
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
14 changed files with 15 additions and 16 deletions

View File

@ -204,14 +204,14 @@ CheckFileList(INTERNAL_FILES ${SOURCES_DIR}/internal)
set(REPORTER_HEADERS
${SOURCES_DIR}/reporters/catch_reporter_automake.hpp
${SOURCES_DIR}/reporters/catch_reporter_bases.hpp
${SOURCES_DIR}/reporters/catch_reporter_compact.h
${SOURCES_DIR}/reporters/catch_reporter_console.h
${SOURCES_DIR}/reporters/catch_reporter_junit.h
${SOURCES_DIR}/reporters/catch_reporter_listening.h
${SOURCES_DIR}/reporters/catch_reporter_compact.hpp
${SOURCES_DIR}/reporters/catch_reporter_console.hpp
${SOURCES_DIR}/reporters/catch_reporter_junit.hpp
${SOURCES_DIR}/reporters/catch_reporter_listening.hpp
${SOURCES_DIR}/reporters/catch_reporter_sonarqube.hpp
${SOURCES_DIR}/reporters/catch_reporter_tap.hpp
${SOURCES_DIR}/reporters/catch_reporter_teamcity.hpp
${SOURCES_DIR}/reporters/catch_reporter_xml.h
${SOURCES_DIR}/reporters/catch_reporter_xml.hpp
)
set(REPORTER_SOURCES
${SOURCES_DIR}/reporters/catch_reporter_automake.cpp

View File

@ -7,7 +7,6 @@
#include <catch2/catch_interfaces_reporter.h>
#include <catch2/catch_console_colour.h>
#include <catch2/reporters/catch_reporter_listening.h>
#include <catch2/catch_list.h>
#include <catch2/catch_text.h>

View File

@ -8,13 +8,13 @@
#include <catch2/catch_reporter_registrars.hpp>
#include <catch2/reporters/catch_reporter_automake.hpp>
#include <catch2/reporters/catch_reporter_compact.h>
#include <catch2/reporters/catch_reporter_console.h>
#include <catch2/reporters/catch_reporter_junit.h>
#include <catch2/reporters/catch_reporter_compact.hpp>
#include <catch2/reporters/catch_reporter_console.hpp>
#include <catch2/reporters/catch_reporter_junit.hpp>
#include <catch2/reporters/catch_reporter_sonarqube.hpp>
#include <catch2/reporters/catch_reporter_tap.hpp>
#include <catch2/reporters/catch_reporter_teamcity.hpp>
#include <catch2/reporters/catch_reporter_xml.h>
#include <catch2/reporters/catch_reporter_xml.hpp>
namespace Catch {

View File

@ -21,7 +21,7 @@
#include <catch2/catch_text.h>
#include <catch2/catch_stream.h>
#include <catch2/catch_windows_h_proxy.h>
#include <catch2/reporters/catch_reporter_listening.h>
#include <catch2/reporters/catch_reporter_listening.hpp>
#include <cstdlib>
#include <iomanip>

View File

@ -5,7 +5,7 @@
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*/
#include <catch2/reporters/catch_reporter_compact.h>
#include <catch2/reporters/catch_reporter_compact.hpp>
#include <catch2/catch_console_colour.h>

View File

@ -6,7 +6,7 @@
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*/
#include <catch2/reporters/catch_reporter_console.h>
#include <catch2/reporters/catch_reporter_console.hpp>
#include <catch2/catch_reporter_registrars.hpp>
#include <catch2/catch_console_colour.h>

View File

@ -8,7 +8,7 @@
#include <catch2/reporters/catch_reporter_bases.hpp>
#include <catch2/reporters/catch_reporter_junit.h>
#include <catch2/reporters/catch_reporter_junit.hpp>
#include <catch2/catch_tostring.h>
#include <catch2/catch_reporter_registrars.hpp>

View File

@ -6,7 +6,7 @@
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*/
#include <catch2/reporters/catch_reporter_listening.h>
#include <catch2/reporters/catch_reporter_listening.hpp>
#include <cassert>
namespace Catch {

View File

@ -6,7 +6,7 @@
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*/
#include <catch2/reporters/catch_reporter_xml.h>
#include <catch2/reporters/catch_reporter_xml.hpp>
#include <catch2/catch_capture.hpp>
#include <catch2/catch_reporter_registrars.hpp>