6#ifndef MIMICPP_ADAPTERS_BOOST_TEST_HPP
7#define MIMICPP_ADAPTERS_BOOST_TEST_HPP
13#if __has_include(<boost/test/unit_test.hpp>)
14 #include <boost/test/unit_test.hpp>
16 #error "Unable to find Boost.Test includes."
19namespace mimicpp::detail::boost_test
34 BOOST_TEST_MESSAGE(msg);
57 &detail::boost_test::send_success,
58 &detail::boost_test::send_warning,
59 &detail::boost_test::send_fail>;
62namespace mimicpp::detail::boost_test
64 inline const ReporterInstaller<BoostTestReporterT> installer{};
A reporter, which creates text messages and reports them via the provided callbacks.
Definition Reporter.hpp:328
Definition BoostTest.hpp:20
void unreachable()
Invokes undefined behavior.
Definition Utility.hpp:89
std::basic_string_view< CharT, CharTraitsT > StringViewT
Definition Fwd.hpp:343