-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathoverload-test.cpp
31 lines (25 loc) · 968 Bytes
/
overload-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
29
30
31
// 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(OverloadTests)
template <typename TestFixture>
struct FunctionProvider {
bool OverloadedMethod(
typename TestFixture::template left_t<void(std::false_type)>) {
return false;
}
bool OverloadedMethod(
typename TestFixture::template left_t<void(std::true_type)>) {
return true;
}
};
TYPED_TEST(OverloadTests, IsOverloadable) {
// Test whether fu2::function supports overloading which isn't possible
// with C++11 std::function implementations because of
// a non SFINAE guarded templated constructor.
FunctionProvider<TestFixture> provider;
int i = 0;
EXPECT_TRUE(provider.OverloadedMethod([&](std::true_type) { ++i; }));
}