#ifndef CARD_TEST_H #define CARD_TEST_H #include class ICardPack; class CardTest: public testing::Test { public: void SetUp(); void TearDown(); protected: ICardPack* defaultPack; }; #endif