blob: ffbb06c7096cfdebd6bcff3642164d92990874ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <gmock/gmock.h>
#include "../matchings_finder.h"
#include "../phrase_location.h"
namespace extractor {
class MockMatchingsFinder : public MatchingsFinder {
public:
MOCK_METHOD3(Find, PhraseLocation(PhraseLocation&, const string&, int));
};
} // namespace extractor
|