blob: 372fa7ea653dc49a77d49d4d299cbf9510afadfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <gmock/gmock.h>
#include "../intersector.h"
#include "../phrase.h"
#include "../phrase_location.h"
class MockIntersector : public Intersector {
public:
MOCK_METHOD5(Intersect, PhraseLocation(const Phrase&, PhraseLocation&,
const Phrase&, PhraseLocation&, const Phrase&));
};
|