forked from organicmaps/organicmaps
[base] Tests on returns void case for all kinds of exceptions catcher.
This commit is contained in:
parent
33ac753452
commit
cf674646e9
1 changed files with 13 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue