]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/test/test/test-organization-ts/test-tree-several-suite-decl-2.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / test / test / test-organization-ts / test-tree-several-suite-decl-2.hpp
1 // (C) Copyright Raffi Enficiaud 2017.
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 // second file, should be exactly the same as second file except for the test name
9 BOOST_AUTO_TEST_SUITE(data)
10 BOOST_AUTO_TEST_SUITE(foo)
11
12 BOOST_AUTO_TEST_CASE(test2)
13 {
14 BOOST_TEST(true);
15 }
16 BOOST_TEST_DECORATOR(* boost::unit_test::description("with description"))
17 BOOST_AUTO_TEST_CASE(test21)
18 {
19 BOOST_TEST(true);
20 }
21
22 BOOST_AUTO_TEST_SUITE_END()
23 BOOST_AUTO_TEST_SUITE_END()