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

#include "../features/feature.h"

class MockFeature : public Feature {
 public:
  MOCK_CONST_METHOD1(Score, double(const FeatureContext& context));
  MOCK_CONST_METHOD0(GetName, string());
};