summaryrefslogtreecommitdiff
path: root/tests/unit/Card/Card_test.h
blob: e9a0891cd4c9a961d5fc055ef53940d903892e7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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