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