test: reactive mixin suite

This commit is contained in:
Michele Caini
2024-09-24 07:57:32 +02:00
parent ff33c2fc02
commit 76eb4f4ded

View File

@@ -0,0 +1,14 @@
#include <gtest/gtest.h>
template<typename Type>
struct ReactiveMixin: testing::Test {
using type = Type;
};
template<typename Type>
using ReactiveMixinDeathTest = ReactiveMixin<Type>;
using ReactiveMixinTypes = ::testing::Types<void, bool>;
TYPED_TEST_SUITE(ReactiveMixin, ReactiveMixinTypes, );
TYPED_TEST_SUITE(ReactiveMixinDeathTest, ReactiveMixinTypes, );