Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (C) 2014 Named Data Networking Project |
| 4 | * See COPYING for copyright and distribution information. |
| 5 | */ |
| 6 | |
| 7 | #include <boost/test/unit_test.hpp> |
| 8 | |
| 9 | BOOST_AUTO_TEST_SUITE(TestSkeleton) |
| 10 | |
| 11 | BOOST_AUTO_TEST_CASE (Test1) |
| 12 | { |
| 13 | int i = 0; |
| 14 | /** |
| 15 | * For reference of available Boost.Test macros, @see http://www.boost.org/doc/libs/1_55_0/libs/test/doc/html/utf/testing-tools/reference.html |
| 16 | */ |
| 17 | |
| 18 | BOOST_REQUIRE_NO_THROW(i = 1); |
| 19 | BOOST_REQUIRE_EQUAL(i, 1); |
| 20 | } |
| 21 | |
| 22 | BOOST_AUTO_TEST_SUITE_END() |