Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 10:02:48

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 interfaces. It includes
0010  * **all** of Catch2 headers related to interfaces.
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 somewhat increased compilation
0015  * times.
0016  *
0017  * When a new header is added to either the `interfaces` folder, or to
0018  * the corresponding internal subfolder, it should be added here.
0019  */
0020 
0021 
0022 #ifndef CATCH_INTERFACES_ALL_HPP_INCLUDED
0023 #define CATCH_INTERFACES_ALL_HPP_INCLUDED
0024 
0025 #include <catch2/interfaces/catch_interfaces_capture.hpp>
0026 #include <catch2/interfaces/catch_interfaces_config.hpp>
0027 #include <catch2/interfaces/catch_interfaces_enum_values_registry.hpp>
0028 #include <catch2/interfaces/catch_interfaces_exception.hpp>
0029 #include <catch2/interfaces/catch_interfaces_generatortracker.hpp>
0030 #include <catch2/interfaces/catch_interfaces_registry_hub.hpp>
0031 #include <catch2/interfaces/catch_interfaces_reporter.hpp>
0032 #include <catch2/interfaces/catch_interfaces_reporter_factory.hpp>
0033 #include <catch2/interfaces/catch_interfaces_tag_alias_registry.hpp>
0034 #include <catch2/interfaces/catch_interfaces_test_invoker.hpp>
0035 #include <catch2/interfaces/catch_interfaces_testcase.hpp>
0036 
0037 #endif // CATCH_INTERFACES_ALL_HPP_INCLUDED