Added test suit
[mdictionary] / trunk / tests / mDictionaryTests / CommonDictInterfaceMock.h
1 /*******************************************************************************
2
3     This file is part of mDictionary.
4
5     mDictionary is free software: you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation, either version 3 of the License, or
8     (at your option) any later version.
9
10     mDictionary is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with mDictionary.  If not, see <http://www.gnu.org/licenses/>.
17
18     Copyright 2010 Comarch S.A.
19
20 *******************************************************************************/
21
22 // Created by Bartosz Szatkowski
23
24
25
26
27 #ifndef COMMONDICTINTERFACEMOCK_H
28 #define COMMONDICTINTERFACEMOCK_H
29
30 #include "../../src/includes/CommonDictInterface.h"
31
32 class CommonDictInterfaceMock : public CommonDictInterface
33 {
34 public:
35     QString fromv, tov, namev, typev, infoNotev;
36     bool available;
37
38     QString langFrom () const { return fromv; }
39     QString langTo() const {return tov;}
40     QString name() const { return namev;}
41     QString type() const {return typev;}
42     QString infoNote() const {return infoNotev;}
43     QDialog* loadDialog() {return 0;}
44     QDialog* settingsDialog() {return 0;}
45     CommonDictInterface* getNew(const Settings *) const { return 0;}
46     bool isAvailable() const {return available;}
47     uint hash() const { return namev.length() + 10*typev.length();}
48     void search(QString word, int limit) {}
49     void stop() {}
50
51 };
52
53 #endif // COMMONDICTINTERFACEMOCK_H