2
0
mirror of https://github.com/boostorg/test.git synced 2026-01-22 17:52:18 +00:00
Files
test/example/unit_test_example_01.cpp
Gennadiy Rozental 81e8aa2fdb fix in examples
[SVN r57994]
2009-11-28 10:22:24 +00:00

20 lines
535 B
C++

// (C) Copyright Gennadiy Rozental 2005.
// 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.
// Boost.Test
// each test module could contain no more then one 'main' file with init function defined
// alternatively you could define init function yourself
#define BOOST_TEST_MAIN
#include <boost/test/unit_test.hpp>
BOOST_AUTO_TEST_CASE( test1 )
{
}
// EOF