summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/test/_include/auto/make.hpp
blob: 83536edfd6decbb8a5abb4e7f8bf9a9d020430b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// 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_MAKE_HPP
#define BOOST_HANA_TEST_AUTO_MAKE_HPP

#include <boost/hana/assert.hpp>
#include <boost/hana/core/make.hpp>
#include <boost/hana/equal.hpp>

#include "test_case.hpp"
#include <laws/base.hpp>


TestCase test_make{[]{
    namespace hana = boost::hana;
    using hana::test::ct_eq;

    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        MAKE_TUPLE(),
        hana::make<TUPLE_TAG>()
    ));

    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        MAKE_TUPLE(ct_eq<0>{}),
        hana::make<TUPLE_TAG>(ct_eq<0>{})
    ));

    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}),
        hana::make<TUPLE_TAG>(ct_eq<0>{}, ct_eq<1>{})
    ));

    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}),
        hana::make<TUPLE_TAG>(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{})
    ));
}};

#endif // !BOOST_HANA_TEST_AUTO_MAKE_HPP