• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 // first file, should be exactly the same as second file except for the test name
9 BOOST_AUTO_TEST_SUITE(data)
BOOST_AUTO_TEST_SUITE(foo)10 BOOST_AUTO_TEST_SUITE(foo)
11 
12 BOOST_AUTO_TEST_CASE(test1)
13 {
14   BOOST_TEST(true);
15 }
16 BOOST_TEST_DECORATOR(* boost::unit_test::description("with description"))
BOOST_AUTO_TEST_CASE(test11)17 BOOST_AUTO_TEST_CASE(test11)
18 {
19   BOOST_TEST(true);
20 }
21 
22 BOOST_AUTO_TEST_SUITE_END()
23 BOOST_AUTO_TEST_SUITE_END()
24