summaryrefslogtreecommitdiff
path: root/extractor/alignment_test.cc
blob: 1bc51a5607a5c94c3ed7cd3f93d76102d5593038 (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
#include <gtest/gtest.h>

#include <memory>
#include <string>

#include "alignment.h"

using namespace std;
using namespace ::testing;

namespace {

class AlignmentTest : public Test {
 protected:
  virtual void SetUp() {
    alignment = make_shared<Alignment>("sample_alignment.txt");
  }

  shared_ptr<Alignment> alignment;
};

TEST_F(AlignmentTest, TestGetLinks) {
  vector<pair<int, int> > expected_links = {
    make_pair(0, 0), make_pair(1, 1), make_pair(2, 2)
  };
  EXPECT_EQ(expected_links, alignment->GetLinks(0));
  expected_links = {make_pair(1, 0), make_pair(2, 1)};
  EXPECT_EQ(expected_links, alignment->GetLinks(1));
}

}  // namespace