summaryrefslogtreecommitdiff
path: root/extractor/mocks/mock_matchings_finder.h
blob: 3e80d266ad8b2062e7fbb150319a11240bd3976e (plain)
1
2
3
4
5
6
7
8
9
#include <gmock/gmock.h>

#include "../matchings_finder.h"
#include "../phrase_location.h"

class MockMatchingsFinder : public MatchingsFinder {
 public:
  MOCK_METHOD3(Find, PhraseLocation(PhraseLocation&, const string&, int));
};