summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/sol2/Catch/projects/SelfTest/ToStringTuple.cpp
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/sol2/Catch/projects/SelfTest/ToStringTuple.cpp')
-rw-r--r--3rdparty/sol2/Catch/projects/SelfTest/ToStringTuple.cpp59
1 files changed, 0 insertions, 59 deletions
diff --git a/3rdparty/sol2/Catch/projects/SelfTest/ToStringTuple.cpp b/3rdparty/sol2/Catch/projects/SelfTest/ToStringTuple.cpp
deleted file mode 100644
index 80e5453097a..00000000000
--- a/3rdparty/sol2/Catch/projects/SelfTest/ToStringTuple.cpp
+++ /dev/null
@@ -1,59 +0,0 @@
-#include "catch.hpp"
-
-#ifdef CATCH_CPP11_OR_GREATER
-
-#ifdef __clang__
-#pragma clang diagnostic push
-#pragma clang diagnostic ignored "-Wc++98-compat"
-#endif
-
-TEST_CASE( "tuple<>", "[toString][tuple]" )
-{
- typedef std::tuple<> type;
- CHECK( "{ }" == Catch::toString(type{}) );
- type value {};
- CHECK( "{ }" == Catch::toString(value) );
-}
-
-TEST_CASE( "tuple<int>", "[toString][tuple]" )
-{
- typedef std::tuple<int> type;
- CHECK( "{ 0 }" == Catch::toString(type{0}) );
-}
-
-
-TEST_CASE( "tuple<float,int>", "[toString][tuple]" )
-{
- typedef std::tuple<float,int> type;
- CHECK( "1.2f" == Catch::toString(float(1.2)) );
- CHECK( "{ 1.2f, 0 }" == Catch::toString(type{1.2,0}) );
-}
-
-TEST_CASE( "tuple<string,string>", "[toString][tuple]" )
-{
- typedef std::tuple<std::string,std::string> type;
- CHECK( "{ \"hello\", \"world\" }" == Catch::toString(type{"hello","world"}) );
-}
-
-TEST_CASE( "tuple<tuple<int>,tuple<>,float>", "[toString][tuple]" )
-{
- typedef std::tuple<std::tuple<int>,std::tuple<>,float> type;
- type value { std::tuple<int>{42}, {}, 1.2f };
- CHECK( "{ { 42 }, { }, 1.2f }" == Catch::toString(value) );
-}
-
-#ifdef CATCH_CONFIG_CPP11_NULLPTR
-TEST_CASE( "tuple<nullptr,int,const char *>", "[toString][tuple]" )
-{
- typedef std::tuple<std::nullptr_t,int,const char *> type;
- type value { nullptr, 42, "Catch me" };
- CHECK( "{ nullptr, 42, \"Catch me\" }" == Catch::toString(value) );
-}
-#endif
-
-#ifdef __clang__
-#pragma clang diagnostic pop
-#endif
-
-#endif /* #ifdef CATCH_CPP11_OR_GREATER */
-