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

#include "../precomputation.h"

class MockPrecomputation : public Precomputation {
 public:
  MOCK_CONST_METHOD0(GetInvertedIndex, const Index&());
  MOCK_CONST_METHOD0(GetCollocations, const Index&());
};