]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/test/doc/examples/decorator_20.run-fail.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / test / doc / examples / decorator_20.run-fail.cpp
1 // (C) Copyright Andrzej Krzemienski 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 //[example_code
9 #define BOOST_TEST_MODULE decorator_20
10 #include <boost/test/included/unit_test.hpp>
11
12 namespace utf = boost::unit_test;
13
14 const bool io_implemented = true;
15 const bool db_implemented = false;
16
17 BOOST_AUTO_TEST_SUITE(suite1, * utf::disabled())
18
19 BOOST_AUTO_TEST_CASE(test_1)
20 {
21 BOOST_TEST(1 != 1);
22 }
23
24 BOOST_AUTO_TEST_CASE(test_2, * utf::enabled())
25 {
26 BOOST_TEST(2 != 2);
27 }
28
29 BOOST_AUTO_TEST_CASE(test_io,
30 * utf::enable_if<io_implemented>())
31 {
32 BOOST_TEST(3 != 3);
33 }
34
35 BOOST_AUTO_TEST_CASE(test_db,
36 * utf::enable_if<db_implemented>())
37 {
38 BOOST_TEST(4 != 4);
39 }
40
41 BOOST_AUTO_TEST_SUITE_END()
42 //]