]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/test/example/unit_test_example_09_2.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / test / example / unit_test_example_09_2.cpp
index 89124de85f086f2d8eb2178f1370d2a89f921587..3a22a5e91161b95a05a1fbcc09adb5c5d1c960e0 100644 (file)
@@ -1,6 +1,6 @@
 //  (C) Copyright Gennadiy Rozental 2005-2014.
 //  Distributed under the Boost Software License, Version 1.0.
-//  (See accompanying file LICENSE_1_0.txt or copy at 
+//  (See accompanying file LICENSE_1_0.txt or copy at
 //  http://www.boost.org/LICENSE_1_0.txt)
 
 //  See http://www.boost.org/libs/test for the library home page.
 
 //____________________________________________________________________________//
 
-struct MyConfig2 { 
-    MyConfig2() { std::cout << "global setup part2\n"; } 
-    ~MyConfig2() { std::cout << "global teardown part2\n"; } 
+struct MyConfig2 {
+    MyConfig2() { std::cout << "global setup part2\n"; }
+    ~MyConfig2() { std::cout << "global teardown part2\n"; }
 };
 
 // structure MyConfig2 is used as a global fixture. You could have any number of global fxtures
-BOOST_GLOBAL_FIXTURE( MyConfig2 );
+BOOST_TEST_GLOBAL_FIXTURE( MyConfig2 );
 
 //____________________________________________________________________________//