summaryrefslogtreecommitdiff
path: root/tests/unit/Card/Card_test.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/Card/Card_test.h')
-rw-r--r--tests/unit/Card/Card_test.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/unit/Card/Card_test.h b/tests/unit/Card/Card_test.h
new file mode 100644
index 0000000..e9a0891
--- /dev/null
+++ b/tests/unit/Card/Card_test.h
@@ -0,0 +1,18 @@
+#ifndef CARD_TEST_H
+#define CARD_TEST_H
+
+#include <gtest/gtest.h>
+
+class ICardPack;
+
+class CardTest: public testing::Test
+{
+public:
+ void SetUp();
+ void TearDown();
+
+protected:
+ ICardPack* defaultPack;
+};
+
+#endif