18 lines
479 B
C++
18 lines
479 B
C++
#ifdef TESTS_BUILD
|
|
#include <cstring>
|
|
#include "../extern/catch.hpp"
|
|
#include "../src/Library/Exceptions/CreatureException.hpp"
|
|
|
|
TEST_CASE("When throwing exception, what() is readable", "[Utilities]") {
|
|
bool hasCaught = false;
|
|
try {
|
|
THROW_CREATURE("foobar");
|
|
} catch (const std::exception& e) {
|
|
hasCaught = true;
|
|
INFO(e.what());
|
|
REQUIRE(std::string(e.what()) == "[ExceptionTests.cpp:9] foobar");
|
|
}
|
|
REQUIRE(hasCaught);
|
|
}
|
|
|
|
#endif |