tut logo

restartable/main.cpp


restartable/main.cpp

tut main for startig all tests. if the program crash, the testprogram starts at the next untested position.

#include <iostream>
#include <exception>
#include <tut/tut_restartable.hpp>
#include <tut/tut_console_reporter.hpp>
using std::cerr;
using std::endl;
using std::exception;
namespace tut
{
test_runner_singleton runner;
}
int main()
{
cerr << "NB: this application will be terminated by OS four times\n"
"before you'll get test results, be patient restarting it.\n";
try
{
console_reporter visi;
restartable_wrapper restartable;
restartable.set_callback(&visi);
restartable.run_tests();
}
catch (const exception& ex)
{
cerr << "tut raised ex: " << ex.what() << endl;
}
return 0;
}

All Rights Reserved. Generated on Wed Dec 18 2013 11:19:52 for TUT by doxygen 1.8.5