summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/test/_include/auto/test_case.hpp
blob: 03de19ac045b593bfc38db71b7b272b24c81fe3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Louis Dionne 2013-2017
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)

#ifndef BOOST_HANA_TEST_AUTO_TEST_CASE_HPP
#define BOOST_HANA_TEST_AUTO_TEST_CASE_HPP

struct TestCase {
    template <typename F>
    explicit TestCase(F const& f) { f(); }
};

#endif // !BOOST_HANA_TEST_AUTO_TEST_CASE_HPP