blob: 1fd0c2aa2c5c57faa945521083c59fd2751c6ea9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#include <gtest/gtest.h>
#include <memory>
#include <string>
#include "count_source_target.h"
using namespace std;
using namespace ::testing;
namespace extractor {
namespace features {
namespace {
class CountSourceTargetTest : public Test {
protected:
virtual void SetUp() {
feature = make_shared<CountSourceTarget>();
}
shared_ptr<CountSourceTarget> feature;
};
TEST_F(CountSourceTargetTest, TestGetName) {
EXPECT_EQ("CountEF", feature->GetName());
}
TEST_F(CountSourceTargetTest, TestScore) {
Phrase phrase;
FeatureContext context(phrase, phrase, 0.5, 9, 13);
EXPECT_EQ(1.0, feature->Score(context));
}
} // namespace
} // namespace features
} // namespace extractor
|