Allow empty Type<> type list

This commit is contained in:
Hannes Vogt 2021-06-30 13:40:15 +02:00
parent 355d57d90d
commit 78b4e9b8bb
2 changed files with 25 additions and 1 deletions

View file

@ -147,11 +147,22 @@ struct Types<Head_> {
using Tail = None;
};
// Helper metafunction to convert an empty ::testing::Types list to None
template <typename... Ts>
struct types_or_none {
using type = Types<Ts...>;
};
template <>
struct types_or_none<> {
using type = None;
};
// Helper metafunctions to tell apart a single type from types
// generated by ::testing::Types
template <typename... Ts>
struct ProxyTypeList {
using type = Types<Ts...>;
using type = typename types_or_none<Ts...>::type;
};
template <typename>

View file

@ -150,6 +150,19 @@ TYPED_TEST_SUITE(TypedTest2, Types<int>);
// share the same name.
TYPED_TEST(TypedTest2, A) {}
template <typename T>
class TypedTest3 : public Test {
};
// Verifies that an empty Types<> type list works.
// This is useful in case Types<> is constructed conditionally, e.g.
// `my_types = typename std::conditional<have_types, some_types, Types<>>::type;`
TYPED_TEST_SUITE(TypedTest3, Types<>);
TYPED_TEST(TypedTest3, A) {
ASSERT_TRUE(false); // Make sure this test is never executed.
}
// Tests that a typed test case can be defined in a namespace.
namespace library1 {