diff options
author | louiz’ <louiz@louiz.org> | 2018-01-25 02:17:20 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2018-01-25 02:22:19 +0100 |
commit | e267512ad40c073bd5a5b37a4ee3378c80b9f523 (patch) | |
tree | b33a90ad14ba701984a434543225a3f08c01cf6a /tests | |
parent | 3f8513726512308b1b48d3370d7acf0f63752725 (diff) | |
download | biboumi-e267512ad40c073bd5a5b37a4ee3378c80b9f523.tar.gz biboumi-e267512ad40c073bd5a5b37a4ee3378c80b9f523.tar.bz2 biboumi-e267512ad40c073bd5a5b37a4ee3378c80b9f523.tar.xz biboumi-e267512ad40c073bd5a5b37a4ee3378c80b9f523.zip |
Restore the is_one_of variable template
Diffstat (limited to 'tests')
-rw-r--r-- | tests/utils.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/utils.cpp b/tests/utils.cpp index 99c7040..6de19f0 100644 --- a/tests/utils.cpp +++ b/tests/utils.cpp @@ -175,11 +175,11 @@ TEST_CASE("dirname") TEST_CASE("is_in") { - CHECK((is_one_of<int, float, std::string, int>::value) == true); - CHECK((is_one_of<int, float, std::string>::value) == false); - CHECK((is_one_of<int>::value) == false); - CHECK((is_one_of<int, int>::value) == true); - CHECK((is_one_of<bool, int>::value) == false); - CHECK((is_one_of<bool, bool>::value) == true); - CHECK((is_one_of<bool, bool, bool, bool, bool, int>::value) == true); + CHECK((is_one_of<int, float, std::string, int>) == true); + CHECK((is_one_of<int, float, std::string>) == false); + CHECK((is_one_of<int>) == false); + CHECK((is_one_of<int, int>) == true); + CHECK((is_one_of<bool, int>) == false); + CHECK((is_one_of<bool, bool>) == true); + CHECK((is_one_of<bool, bool, bool, bool, bool, int>) == true); } |