summaryrefslogtreecommitdiff
path: root/extractor/mocks/mock_binary_search_merger.h
blob: e1375ee3a1fbf85e0abca6417d9a51d7be2603d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <gmock/gmock.h>

#include <vector>

#include "../binary_search_merger.h"
#include "../phrase.h"

using namespace std;

class MockBinarySearchMerger: public BinarySearchMerger {
 public:
  MOCK_CONST_METHOD9(Merge, void(vector<int>&, const Phrase&, const Phrase&,
      vector<int>::iterator, vector<int>::iterator, vector<int>::iterator,
      vector<int>::iterator, int, int));
};