]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/test/test/smoke-ts/basic-smoke-test3.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / test / test / smoke-ts / basic-smoke-test3.cpp
1 // (C) Copyright Raffi Enficiaud 2018.
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 #define BOOST_TEST_MODULE basic_smoke_test3
9 #include <boost/test/included/unit_test.hpp>
10
11 BOOST_AUTO_TEST_SUITE(some_suite)
12
13 BOOST_AUTO_TEST_CASE(case1)
14 {
15 BOOST_TEST(false);
16 }
17
18 BOOST_AUTO_TEST_SUITE_END();
19
20 BOOST_AUTO_TEST_CASE(case2)
21 {
22 BOOST_TEST(true);
23 }