blob: a35c9327f4d11902042cff00683477cbd436fe6c (
plain)
1
2
3
4
5
6
7
8
9
|
#include <gmock/gmock.h>
#include "../translation_table.h"
class MockTranslationTable : public TranslationTable {
public:
MOCK_METHOD2(GetSourceGivenTargetScore, double(const string&, const string&));
MOCK_METHOD2(GetTargetGivenSourceScore, double(const string&, const string&));
};
|