summaryrefslogtreecommitdiff
path: root/extractor/mocks/mock_translation_table.h
blob: 358c854f1c376db8d3b544dcb4492317b64711de (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