Back to home page

EIC code displayed by LXR

 
 

    


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

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 Matcher support. It includes
0010  * **all** of Catch2 headers related to matchers.
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 increased compilation times.
0015  *
0016  * When a new header is added to either the `matchers` folder, or to
0017  * the corresponding internal subfolder, it should be added here.
0018  */
0019 
0020 #ifndef CATCH_MATCHERS_ALL_HPP_INCLUDED
0021 #define CATCH_MATCHERS_ALL_HPP_INCLUDED
0022 
0023 #include <catch2/matchers/catch_matchers.hpp>
0024 #include <catch2/matchers/catch_matchers_container_properties.hpp>
0025 #include <catch2/matchers/catch_matchers_contains.hpp>
0026 #include <catch2/matchers/catch_matchers_exception.hpp>
0027 #include <catch2/matchers/catch_matchers_floating_point.hpp>
0028 #include <catch2/matchers/catch_matchers_predicate.hpp>
0029 #include <catch2/matchers/catch_matchers_quantifiers.hpp>
0030 #include <catch2/matchers/catch_matchers_range_equals.hpp>
0031 #include <catch2/matchers/catch_matchers_string.hpp>
0032 #include <catch2/matchers/catch_matchers_templated.hpp>
0033 #include <catch2/matchers/catch_matchers_vector.hpp>
0034 #include <catch2/matchers/internal/catch_matchers_impl.hpp>
0035 
0036 #endif // CATCH_MATCHERS_ALL_HPP_INCLUDED