mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 13:26:10 +01:00
Rename reporters to use .hpp suffix
I want to standardize _all_ of Catch2 headers on the `.hpp` suffix.
This commit is contained in:
parent
151dccbd31
commit
54a7eb1aed
@ -204,14 +204,14 @@ CheckFileList(INTERNAL_FILES ${SOURCES_DIR}/internal)
|
|||||||
set(REPORTER_HEADERS
|
set(REPORTER_HEADERS
|
||||||
${SOURCES_DIR}/reporters/catch_reporter_automake.hpp
|
${SOURCES_DIR}/reporters/catch_reporter_automake.hpp
|
||||||
${SOURCES_DIR}/reporters/catch_reporter_bases.hpp
|
${SOURCES_DIR}/reporters/catch_reporter_bases.hpp
|
||||||
${SOURCES_DIR}/reporters/catch_reporter_compact.h
|
${SOURCES_DIR}/reporters/catch_reporter_compact.hpp
|
||||||
${SOURCES_DIR}/reporters/catch_reporter_console.h
|
${SOURCES_DIR}/reporters/catch_reporter_console.hpp
|
||||||
${SOURCES_DIR}/reporters/catch_reporter_junit.h
|
${SOURCES_DIR}/reporters/catch_reporter_junit.hpp
|
||||||
${SOURCES_DIR}/reporters/catch_reporter_listening.h
|
${SOURCES_DIR}/reporters/catch_reporter_listening.hpp
|
||||||
${SOURCES_DIR}/reporters/catch_reporter_sonarqube.hpp
|
${SOURCES_DIR}/reporters/catch_reporter_sonarqube.hpp
|
||||||
${SOURCES_DIR}/reporters/catch_reporter_tap.hpp
|
${SOURCES_DIR}/reporters/catch_reporter_tap.hpp
|
||||||
${SOURCES_DIR}/reporters/catch_reporter_teamcity.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
|
set(REPORTER_SOURCES
|
||||||
${SOURCES_DIR}/reporters/catch_reporter_automake.cpp
|
${SOURCES_DIR}/reporters/catch_reporter_automake.cpp
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
|
|
||||||
#include <catch2/catch_interfaces_reporter.h>
|
#include <catch2/catch_interfaces_reporter.h>
|
||||||
#include <catch2/catch_console_colour.h>
|
#include <catch2/catch_console_colour.h>
|
||||||
#include <catch2/reporters/catch_reporter_listening.h>
|
|
||||||
#include <catch2/catch_list.h>
|
#include <catch2/catch_list.h>
|
||||||
#include <catch2/catch_text.h>
|
#include <catch2/catch_text.h>
|
||||||
|
|
||||||
|
@ -8,13 +8,13 @@
|
|||||||
|
|
||||||
#include <catch2/catch_reporter_registrars.hpp>
|
#include <catch2/catch_reporter_registrars.hpp>
|
||||||
#include <catch2/reporters/catch_reporter_automake.hpp>
|
#include <catch2/reporters/catch_reporter_automake.hpp>
|
||||||
#include <catch2/reporters/catch_reporter_compact.h>
|
#include <catch2/reporters/catch_reporter_compact.hpp>
|
||||||
#include <catch2/reporters/catch_reporter_console.h>
|
#include <catch2/reporters/catch_reporter_console.hpp>
|
||||||
#include <catch2/reporters/catch_reporter_junit.h>
|
#include <catch2/reporters/catch_reporter_junit.hpp>
|
||||||
#include <catch2/reporters/catch_reporter_sonarqube.hpp>
|
#include <catch2/reporters/catch_reporter_sonarqube.hpp>
|
||||||
#include <catch2/reporters/catch_reporter_tap.hpp>
|
#include <catch2/reporters/catch_reporter_tap.hpp>
|
||||||
#include <catch2/reporters/catch_reporter_teamcity.hpp>
|
#include <catch2/reporters/catch_reporter_teamcity.hpp>
|
||||||
#include <catch2/reporters/catch_reporter_xml.h>
|
#include <catch2/reporters/catch_reporter_xml.hpp>
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
#include <catch2/catch_text.h>
|
#include <catch2/catch_text.h>
|
||||||
#include <catch2/catch_stream.h>
|
#include <catch2/catch_stream.h>
|
||||||
#include <catch2/catch_windows_h_proxy.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 <cstdlib>
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
* 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>
|
#include <catch2/catch_console_colour.h>
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
* 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_reporter_registrars.hpp>
|
||||||
#include <catch2/catch_console_colour.h>
|
#include <catch2/catch_console_colour.h>
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
#include <catch2/reporters/catch_reporter_bases.hpp>
|
#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_tostring.h>
|
||||||
#include <catch2/catch_reporter_registrars.hpp>
|
#include <catch2/catch_reporter_registrars.hpp>
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
* 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>
|
#include <cassert>
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
* 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_capture.hpp>
|
||||||
#include <catch2/catch_reporter_registrars.hpp>
|
#include <catch2/catch_reporter_registrars.hpp>
|
||||||
|
Loading…
Reference in New Issue
Block a user