Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:54:08

0001 
0002 //              Copyright Catch2 Authors
0003 // Distributed under the Boost Software License, Version 1.0.
0004 //   (See accompanying file LICENSE.txt or copy at
0005 //        https://www.boost.org/LICENSE_1_0.txt)
0006 
0007 // SPDX-License-Identifier: BSL-1.0
0008 /** \file
0009  * This is a convenience header for Catch2's Reporter support. It includes
0010  * **all** of Catch2 headers related to reporters, including all reporters.
0011  *
0012  * Generally the Catch2 users should use specific includes they need,
0013  * but this header can be used instead for ease-of-experimentation, or
0014  * just plain convenience, at the cost of (significantly) increased
0015  * compilation times.
0016  *
0017  * When a new header (reporter) is added to either the `reporter` folder,
0018  * or to the corresponding internal subfolder, it should be added here.
0019  */
0020 
0021 #ifndef CATCH_REPORTERS_ALL_HPP_INCLUDED
0022 #define CATCH_REPORTERS_ALL_HPP_INCLUDED
0023 
0024 #include <catch2/reporters/catch_reporter_automake.hpp>
0025 #include <catch2/reporters/catch_reporter_common_base.hpp>
0026 #include <catch2/reporters/catch_reporter_compact.hpp>
0027 #include <catch2/reporters/catch_reporter_console.hpp>
0028 #include <catch2/reporters/catch_reporter_cumulative_base.hpp>
0029 #include <catch2/reporters/catch_reporter_event_listener.hpp>
0030 #include <catch2/reporters/catch_reporter_helpers.hpp>
0031 #include <catch2/reporters/catch_reporter_junit.hpp>
0032 #include <catch2/reporters/catch_reporter_multi.hpp>
0033 #include <catch2/reporters/catch_reporter_registrars.hpp>
0034 #include <catch2/reporters/catch_reporter_sonarqube.hpp>
0035 #include <catch2/reporters/catch_reporter_streaming_base.hpp>
0036 #include <catch2/reporters/catch_reporter_tap.hpp>
0037 #include <catch2/reporters/catch_reporter_teamcity.hpp>
0038 #include <catch2/reporters/catch_reporter_xml.hpp>
0039 
0040 #endif // CATCH_REPORTERS_ALL_HPP_INCLUDED