summaryrefslogtreecommitdiff
path: root/tests/unit/CardSideView/CardSideView_test.h
blob: 491ebe46fb4bf73c52f16711e124fc842876ec1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef CARDSIDEVIEW_TEST_H
#define CARDSIDEVIEW_TEST_H

#include <gtest/gtest.h>

#include "../../mocks/Dictionary_mock.h"
#include "../../../src/dictionary/CardPack.h"

class CardSideViewTest: public testing::Test
{
public:
    CardSideViewTest():
        cardPack(&dict) {}
    void SetUp();

protected:
    MockDictionary dict;
    CardPack cardPack;
};

#endif