diff options
Diffstat (limited to 'extractor/mocks/mock_precomputation.h')
-rw-r--r-- | extractor/mocks/mock_precomputation.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/extractor/mocks/mock_precomputation.h b/extractor/mocks/mock_precomputation.h new file mode 100644 index 00000000..8753343e --- /dev/null +++ b/extractor/mocks/mock_precomputation.h @@ -0,0 +1,12 @@ +#include <gmock/gmock.h> + +#include "precomputation.h" + +namespace extractor { + +class MockPrecomputation : public Precomputation { + public: + MOCK_CONST_METHOD0(GetCollocations, const Index&()); +}; + +} // namespace extractor |