]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/test/test/usage-variants-ts/single-header-multiunit-1-test.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / test / test / usage-variants-ts / single-header-multiunit-1-test.cpp
1 // (C) Copyright Gennadiy Rozental 2001-2015.
2 // Distributed under the Boost Software License, Version 1.0.
3 // (See accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5
6 // See http://www.boost.org/libs/test for the library home page.
7 //
8 // Description : header-only usage variant with multiple translation units test
9 // ***************************************************************************
10
11 // Boost.Test
12 #define BOOST_TEST_MODULE header-only multiunit test
13 #include <boost/test/included/unit_test.hpp>
14
15 BOOST_AUTO_TEST_CASE( test1 )
16 {
17 int i = 1;
18 BOOST_CHECK( i*i == 1 );
19 }
20
21 //____________________________________________________________________________//
22
23 // EOF