summaryrefslogtreecommitdiff
path: root/tests/unit/CardPack/CardPack_GenerateCards_test.h
blob: 299ee66984c66de934089f000f7df36f67991ec2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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;

};