mirror of
https://github.com/boostorg/test.git
synced 2026-01-27 07:22:11 +00:00
13 lines
225 B
C++
Executable File
13 lines
225 B
C++
Executable File
//[example_code
|
|
#include <stdexcept>
|
|
#include <boost/test/included/prg_exec_monitor.hpp>
|
|
|
|
int foo() { throw std::runtime_error( "big trouble" ); }
|
|
|
|
int cpp_main( int, char* [] ) // note the name
|
|
{
|
|
foo();
|
|
|
|
return 0;
|
|
}
|
|
//]
|