[base] Tests on returns void case for all kinds of exceptions catcher.

This commit is contained in:
Vladimir Byko-Ianko 2020-07-08 19:27:31 +03:00 committed by mpimenov
parent 33ac753452
commit cf674646e9

View file

@ -17,6 +17,11 @@ int FuncThrowsRootExceptionArg(int) { throw RootException("RootException", "Root
int FuncThrowsExceptionArg(int) { throw std::exception(); }
int FuncThrowsNumberArg(int) { throw 1; };
void FuncDoesNotThrowVoid(int) noexcept { return; }
void FuncThrowsRootExceptionVoid(int) { throw RootException("RootException", "RootException"); }
void FuncThrowsExceptionVoid() { throw std::exception(); }
void FuncThrowsNumberVoid() { throw 1; };
UNIT_TEST(ExceptionCatcher_FunctionsWithoutArgs)
{
ExceptionCatcher("Function without arg.", FuncDoesNotThrow);
@ -45,4 +50,12 @@ UNIT_TEST(ExceptionCatcher_Lambdas)
ExceptionCatcher(
"Lambda", [](int) -> int { throw 1; }, 7);
}
UNIT_TEST(ExceptionCatcher_FunctionsReturnVoid)
{
ExceptionCatcher("Function returns void.", FuncDoesNotThrowVoid, 7);
ExceptionCatcher("Function returns void.", FuncThrowsRootExceptionVoid, 7);
ExceptionCatcher("Function returns void.", FuncThrowsExceptionVoid);
ExceptionCatcher("Function returns void..", FuncThrowsNumberVoid);
}
} // namespace