8c8d2187b3
refs #1131, #1136 Change-Id: Ica58341cdc1ea1dc421693a87f35fc50177a707d
26 lines
523 B
C++
26 lines
523 B
C++
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
|
|
/**
|
|
* Copyright (C) 2014 Named Data Networking Project
|
|
* See COPYING for copyright and distribution information.
|
|
*/
|
|
|
|
#include "face/face.hpp"
|
|
#include "dummy-face.hpp"
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
namespace nfd {
|
|
|
|
BOOST_AUTO_TEST_SUITE(FaceFace)
|
|
|
|
BOOST_AUTO_TEST_CASE(Description)
|
|
{
|
|
DummyFace face;
|
|
face.setDescription("3pFsKrvWr");
|
|
BOOST_CHECK_EQUAL(face.getDescription(), "3pFsKrvWr");
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|
|
|
|
} // namespace nfd
|