-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathmulti-signature-test.cpp
28 lines (21 loc) · 1.07 KB
/
multi-signature-test.cpp
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
// Copyright 2015-2020 Denis Blank <denis.blank at outlook dot com>
// Distributed under the Boost Software License, Version 1.0
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include "function2-test.hpp"
ALL_LEFT_TYPED_TEST_CASE(MultiSignatureTests)
TYPED_TEST(MultiSignatureTests, CanInvokeMultipleSignatures) {
typename TestFixture::template left_multi_t<bool(std::true_type) const,
bool(std::false_type) const>
left = fu2::overload([](std::true_type) { return true; },
[](std::false_type) { return false; });
EXPECT_TRUE(left(std::true_type{}));
EXPECT_FALSE(left(std::false_type{}));
}
TYPED_TEST(MultiSignatureTests, CanInvokeGenericSignatures) {
typename TestFixture::template left_multi_t<bool(std::true_type) const,
bool(std::false_type) const>
left = [](auto value) { return bool(value); };
EXPECT_TRUE(left(std::true_type{}));
EXPECT_FALSE(left(std::false_type{}));
}