summaryrefslogtreecommitdiff
path: root/extractor/mocks/mock_translation_table.h
diff options
context:
space:
mode:
Diffstat (limited to 'extractor/mocks/mock_translation_table.h')
-rw-r--r--extractor/mocks/mock_translation_table.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/extractor/mocks/mock_translation_table.h b/extractor/mocks/mock_translation_table.h
new file mode 100644
index 00000000..307e4282
--- /dev/null
+++ b/extractor/mocks/mock_translation_table.h
@@ -0,0 +1,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