X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/e3e2d6326db86d7ca22d2cba1193aa64a8e33b2d..08dd72f2d8d3d7766e4fa87f01840c3ed8211091:/tests/tut/tut_result.hpp diff --git a/tests/tut/tut_result.hpp b/tests/tut/tut_result.hpp deleted file mode 100644 index e9607859..00000000 --- a/tests/tut/tut_result.hpp +++ /dev/null @@ -1,174 +0,0 @@ -#ifndef TUT_RESULT_H_GUARD -#define TUT_RESULT_H_GUARD -#include - -#include - -#if defined(TUT_USE_RTTI) -#if (defined(_MSC_VER) && !defined(_CPPRTTI)) || (defined(__GNUC__) && !defined(__GXX_RTTI)) -#undef TUT_USE_RTTI -#endif -#endif - -#if defined(TUT_USE_RTTI) -#include -#endif - -namespace tut -{ - -#if defined(TUT_USE_RTTI) -template -inline std::string type_name(const T& t) -{ - return typeid(t).name(); -} -#else -template -inline std::string type_name(const T& t) -{ - return "Unknown type, RTTI disabled"; -} - -inline std::string type_name(const std::exception&) -{ - return "Unknown std::exception, RTTI disabled"; -} -#endif - - -#if defined(TUT_USE_POSIX) -struct test_result_posix -{ - test_result_posix() - : pid(getpid()) - { - } - - virtual ~test_result_posix() - { - } - - pid_t pid; -}; -#else -struct test_result_posix -{ - virtual ~test_result_posix() - { - } -}; -#endif - -/** - * Return type of runned test/test group. - * - * For test: contains result of test and, possible, message - * for failure or exception. - */ -struct test_result : public test_result_posix -{ - /** - * Test group name. - */ - std::string group; - - /** - * Test number in group. - */ - int test; - - /** - * Test name (optional) - */ - std::string name; - - /** - * result of a test - */ - enum result_type - { - ok, ///< test finished successfully - fail, ///< test failed with ensure() or fail() methods - ex, ///< test throwed an exceptions - warn, ///< test finished successfully, but test destructor throwed - term, ///< test forced test application to terminate abnormally - ex_ctor, ///< - rethrown, ///< - skipped, ///< - dummy ///< - }; - - result_type result; - - /** - * Exception message for failed test. - */ - std::string message; - std::string exception_typeid; - - /** - * Default constructor. - */ - test_result() - : group(), - test(0), - name(), - result(ok), - message(), - exception_typeid() - { - } - - /** - * Constructor. - */ - test_result(const std::string& grp, int pos, - const std::string& test_name, result_type res) - : group(grp), - test(pos), - name(test_name), - result(res), - message(), - exception_typeid() - { - } - - /** - * Constructor with exception. - */ - test_result(const std::string& grp,int pos, - const std::string& test_name, result_type res, - const std::exception& ex) - : group(grp), - test(pos), - name(test_name), - result(res), - message(ex.what()), - exception_typeid(type_name(ex)) - { - } - - /** Constructor with typeid. - */ - test_result(const std::string& grp,int pos, - const std::string& test_name, result_type res, - const std::string& ex_typeid, - const std::string& msg) - : group(grp), - test(pos), - name(test_name), - result(res), - message(msg), - exception_typeid(ex_typeid) - { - } - - virtual ~test_result() - { - } -}; - -} - -#endif