2
0
mirror of https://github.com/boostorg/test.git synced 2026-01-21 17:32:17 +00:00
Files
test/doc/examples/custom_obsolete_init.run-fail.cpp
Gennadiy Rozental 743c67845f Avoid some warnings
2015-06-27 17:54:32 -04:00

22 lines
560 B
C++

// (C) Copyright Andrzej Krzemienski 2015.
// Distributed under the Boost Software License, Version 1.0.
// (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.
//[example_code
#include <boost/test/included/unit_test.hpp>
#include <iostream>
BOOST_AUTO_TEST_CASE(test1)
{
BOOST_TEST(false);
}
boost::unit_test::test_suite* init_unit_test_suite(int /*argc*/, char* /*argv*/[])
{
std::cout << "using obsolete init" << std::endl;
return 0;
}
//]