summaryrefslogtreecommitdiff
path: root/extractor/features/count_source_target_test.cc
blob: 22633bb6c7a027949581f3462743398e51764775 (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
#include <gtest/gtest.h>

#include <memory>
#include <string>

#include "count_source_target.h"

using namespace std;
using namespace ::testing;

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