2
0
mirror of https://github.com/boostorg/test.git synced 2026-01-28 07:42:12 +00:00

Boost Test Library initial commit

[SVN r9364]
This commit is contained in:
Beman Dawes
2001-02-28 21:39:56 +00:00
commit 27b9129803
16 changed files with 1017 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
// 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
}