1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
#include <tut/tut.hpp>
#include <stdexcept>
using std::runtime_error;
namespace tut
{
/**
* Testing exceptions in run of test;
*/
struct runtime_ex
{
test_runner tr;
struct dummy
{
};
typedef test_group<dummy> tf;
typedef tf::object object;
tf factory;
runtime_ex();
};
typedef test_group<runtime_ex> tf;
typedef tf::object object;
tf runtime_exceptions("exceptions at test run time");
// ==================================
// tests of internal runner
// ==================================
template<>
template<>
void runtime_ex::object::test<1>()
{
throw 0;
}
template<>
template<>
void runtime_ex::object::test<2>()
{
throw runtime_error("throwing std exception");
}
#if defined(TUT_USE_SEH)
template<>
template<>
void runtime_ex::object::test<3>()
{
*((char*)0) = 0;
}
#endif
runtime_ex::runtime_ex()
: factory("internal", tr)
{
}
// ==================================
// tests of controlling runner
// ==================================
/**
* Checks getting unknown exception.
*/
template<>
template<>
void object::test<1>()
{
set_test_name("checks getting unknown exception");
test_result t = tr.run_test("internal",1);
ensure("got exception", t.result == test_result::ex);
ensure("got message", t.message == "");
}
/**
* Checks getting std exception.
*/
template<>
template<>
void object::test<2>()
{
set_test_name("checks getting std exception");
test_result t = tr.run_test("internal", 2);
ensure("got exception", t.result == test_result::ex);
ensure("got message", t.message == "throwing std exception");
}
#if defined(TUT_USE_SEH)
/**
* Checks getting segfault under Win32.
*/
template<>
template<>
void object::test<3>()
{
set_test_name("Checks getting segfault under OS Windows");
test_result t = tr.run_test("internal",3);
ensure_equals("got term", t.result, test_result::term);
}
#endif
/**
* Running all tests.
*/
template<>
template<>
void object::test<4>()
{
set_test_name("running all tests");
tr.run_tests("internal");
}
}
|