blob: 201386f2b54101584a077d63a5c739bf5c1debed (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <gmock/gmock.h>
#include "../fast_intersector.h"
#include "../phrase.h"
#include "../phrase_location.h"
class MockFastIntersector : public FastIntersector {
public:
MOCK_METHOD3(Intersect, PhraseLocation(PhraseLocation&, PhraseLocation&,
const Phrase&));
};
|