Ticket #2889: cli.cc

File cli.cc, 314 bytes (added by akim.demaille@…, 14 years ago)

A source file to reproduce the problem

Line 
1#define BOOST_TEST_DYN_LINK
2#include <boost/test/unit_test.hpp>
3using namespace boost::unit_test;
4
5void
6check()
7{
8}
9
10bool init_test_suite()
11{
12 framework::master_test_suite().add(BOOST_TEST_CASE(check));
13 return true;
14}
15
16int
17main(int argc, char** argv)
18{
19 return ::unit_test_main(init_test_suite, argc, argv);
20}