2
0
mirror of https://github.com/boostorg/test.git synced 2026-01-25 18:52:15 +00:00
Files
test/example/cpp_main_example.cpp
nobody d439d61c82 This commit was manufactured by cvs2svn to create tag
'Version_1_22_0'.

[SVN r10239]
2001-05-28 15:01:00 +00:00

12 lines
439 B
C++

// boost cpp_main_example program ------------------------------------------//
#include <boost/test/cpp_main.cpp> // included rather than linked implementation
int add( int i, int j ) { return i+j; }
int cpp_main( int, char *[] ) // note the name!
{
// two ways to detect and report the same error:
if ( add(2,2) != 4 ) throw "Oops..."; // #1 throws on error
return add(2,2) == 4 ? 0 : 1; // #2 returns error directly
}