blob: 48115ef418bb24228954e000c4f9c519027dc20f (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <gmock/gmock.h>
#include "../scorer.h"
#include "../features/feature.h"
class MockScorer : public Scorer {
public:
MOCK_CONST_METHOD1(Score, vector<double>(const FeatureContext& context));
MOCK_CONST_METHOD0(GetFeatureNames, vector<string>());
};
|