假设我们有TestFixture
class TestFixtureClass : public ::testing::Test {}
是否可以以其他方式使用此灯具? 我的意思是正常创建类对象,就像普通类一样。
template <typename Value>
class Different : public ::testing::Test {
public:
Value value;
};
TYPED_TEST_CASE(Different, ::testing::Types<TestFixtureClass>);