From d24f813f3f2a05c112e803e4256b53535895fc98 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Wed, 14 Jul 2021 11:49:10 +1200 Subject: Initial mirror commit --- tests/unit/CardPack/CardPack_GenerateCards_test.h | 26 +++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 tests/unit/CardPack/CardPack_GenerateCards_test.h (limited to 'tests/unit/CardPack/CardPack_GenerateCards_test.h') diff --git a/tests/unit/CardPack/CardPack_GenerateCards_test.h b/tests/unit/CardPack/CardPack_GenerateCards_test.h new file mode 100644 index 0000000..299ee66 --- /dev/null +++ b/tests/unit/CardPack/CardPack_GenerateCards_test.h @@ -0,0 +1,26 @@ +#include +#include +#include +#include +#include + +#include "CardPack_test.h" +#include "../../common/RecordsParam.h" + +class DicRecord; + +using std::vector; +using std::string; +using std::ostream; + +class GenerateCardsTest: public CardPackTest, + public testing::WithParamInterface +{ +public: + static void TearDownTestCase(); + static vector getFields(); + +private: + static vector fields; + +}; -- cgit