This commit is contained in:
Hannes Vogt 2025-03-29 21:57:50 +00:00 committed by GitHub
commit c976c2466b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 25 additions and 1 deletions

View file

@ -184,11 +184,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

@ -144,6 +144,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 {