blob: 47edb1b48d75950c746ff38dafb09b1a1e4b13ab [file] [log] [blame]
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -05001/**
2 * Copyright (C) 2014 Regents of the University of Memphis.
3 * See COPYING for copyright and distribution information.
4 */
5
6#include "route/routing-table-entry.hpp"
7#include <boost/test/unit_test.hpp>
8
9namespace nlsr {
10
11namespace test {
12
13BOOST_AUTO_TEST_SUITE(TestRoutingTableEntry)
14
15BOOST_AUTO_TEST_CASE(RoutingTableEntryDestination)
16{
17 RoutingTableEntry rte1("router1");
18
19 BOOST_CHECK_EQUAL(rte1.getDestination(), "router1");
20}
21
22BOOST_AUTO_TEST_SUITE_END()
23
24} //namespace test
25} //namespace nlsr