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

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

namespace extractor {

class MockScorer : public Scorer {
 public:
  MOCK_CONST_METHOD1(Score, vector<double>(
      const features::FeatureContext& context));
  MOCK_CONST_METHOD0(GetFeatureNames, vector<string>());
};

} // namespace extractor