blob: 066aefc756789828c4f4105bcbcbc8d06fb91432 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shiaf8eeea2014-03-31 20:10:56 -07002/**
Alexander Afanasyevc169a812014-05-20 20:37:29 -04003 * Copyright (c) 2013-2014 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
Junxiao Shiaf8eeea2014-03-31 20:10:56 -070020 */
21
22#include "key-locator.hpp"
23
Alexander Afanasyevb1db7c62014-04-03 14:57:25 -070024#include "boost-test.hpp"
Junxiao Shiaf8eeea2014-03-31 20:10:56 -070025
26namespace ndn {
27
28BOOST_AUTO_TEST_SUITE(TestKeyLocator)
29
30BOOST_AUTO_TEST_CASE(Equality)
31{
32 BOOST_CONCEPT_ASSERT((boost::EqualityComparable<KeyLocator>));
33
34 KeyLocator a;
35 KeyLocator b;
36 BOOST_CHECK_EQUAL(a == b, true);
37 BOOST_CHECK_EQUAL(a != b, false);
38
39 a.setName("ndn:/A");
40 BOOST_CHECK_EQUAL(a == b, false);
41 BOOST_CHECK_EQUAL(a != b, true);
42
43 b.setName("ndn:/B");
44 BOOST_CHECK_EQUAL(a == b, false);
45 BOOST_CHECK_EQUAL(a != b, true);
46
47 b.setName("ndn:/A");
48 BOOST_CHECK_EQUAL(a == b, true);
49 BOOST_CHECK_EQUAL(a != b, false);
50}
51
52BOOST_AUTO_TEST_SUITE_END()
53
54} // namespace ndn