2020-08-15 11:31:16 +00:00
|
|
|
#ifdef TESTS_BUILD
|
2020-09-25 09:50:53 +00:00
|
|
|
#include "../extern/doctest.hpp"
|
2020-08-15 11:31:16 +00:00
|
|
|
#include "../src/Exception.hpp"
|
|
|
|
using namespace ArbUt;
|
|
|
|
|
2020-08-16 17:15:45 +00:00
|
|
|
static void Thrower() { throw ArbUt::Exception("foobar"); }
|
2020-08-16 14:59:13 +00:00
|
|
|
|
2020-08-15 12:05:22 +00:00
|
|
|
TEST_CASE("Throw exception get stack trace") {
|
2020-08-15 11:31:16 +00:00
|
|
|
try {
|
2020-08-16 14:59:13 +00:00
|
|
|
Thrower();
|
2020-08-15 12:19:36 +00:00
|
|
|
} catch (const ArbUt::Exception& e) {
|
2020-08-17 10:05:15 +00:00
|
|
|
REQUIRE(e.GetStacktrace(1) ==
|
|
|
|
"Stacktrace with depth 1: \n"
|
2020-12-23 11:04:20 +00:00
|
|
|
"ExceptionTests.cpp[6] static void Thrower() { throw ArbUt::Exception(\"foobar\"); }\n"
|
|
|
|
"--- End of Stack ---");
|
2020-08-15 11:31:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|