| 6 | namespace fs = boost::filesystem; |
| 7 | |
| 8 | int test_main(int, char*[]) // note name |
| 9 | { |
| 10 | BOOST_TEST(2 + 2 == 5); // one convertible-to-bool argument |
| 11 | BOOST_TEST_EQ(4 + 4, 9); // two EqualityComparible arguments |
| 12 | BOOST_TEST(fs::exists(".")); // should pass, so nothing reported |
| 13 | |
| 14 | return ::boost::report_errors(); // required |
| 15 | } |
| 16 | |
| 17 | // Copyright Beman Dawes 2014 |
| 18 | // Distributed under the Boost Software License, Version 1.0. |