summaryrefslogtreecommitdiff
path: root/extractor/mocks/mock_fast_intersector.h
diff options
context:
space:
mode:
Diffstat (limited to 'extractor/mocks/mock_fast_intersector.h')
-rw-r--r--extractor/mocks/mock_fast_intersector.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/extractor/mocks/mock_fast_intersector.h b/extractor/mocks/mock_fast_intersector.h
new file mode 100644
index 00000000..f0b628d7
--- /dev/null
+++ b/extractor/mocks/mock_fast_intersector.h
@@ -0,0 +1,15 @@
+#include <gmock/gmock.h>
+
+#include "fast_intersector.h"
+#include "phrase.h"
+#include "phrase_location.h"
+
+namespace extractor {
+
+class MockFastIntersector : public FastIntersector {
+ public:
+ MOCK_METHOD3(Intersect, PhraseLocation(PhraseLocation&, PhraseLocation&,
+ const Phrase&));
+};
+
+} // namespace extractor