summaryrefslogtreecommitdiff
path: root/extractor/mocks/mock_fast_intersector.h
blob: f0b628d71fe10d79aedd18c3919c2b5833e16dbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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