summaryrefslogtreecommitdiff
path: root/tests/unit/CardPack/CardPack_GenerateCards_test.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/CardPack/CardPack_GenerateCards_test.h')
-rw-r--r--tests/unit/CardPack/CardPack_GenerateCards_test.h26
1 files changed, 26 insertions, 0 deletions
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 <iostream>
+#include <vector>
+#include <string>
+#include <gtest/gtest.h>
+#include <QtCore>
+
+#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<RecordsParam>
+{
+public:
+ static void TearDownTestCase();
+ static vector<Field*> getFields();
+
+private:
+ static vector<Field*> fields;
+
+};