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

#include "../phrase_location.h"
#include "../sampler.h"

class MockSampler : public Sampler {
 public:
  MOCK_CONST_METHOD1(Sample, PhraseLocation(const PhraseLocation& location));
};