blob: 35548be80be40501e4ea548df906a8bb6fc7f6ab [file] [log] [blame]
Alexander Afanasyev2aa39622014-01-22 11:51:11 -08001/* -*- 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
9BOOST_AUTO_TEST_SUITE(TestSkeleton)
10
11BOOST_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
22BOOST_AUTO_TEST_SUITE_END()