C++ how can I refactor this?
- by ShaChris23
I have the code below in my test code in many places:
//
// Make a function call while expecting an exception should be thrown
//
bool exceptionThrown = false;
try
{
expectNotEqual(someData, anotherData, methodName);
}
catch(std::logic_error&)
{
exceptionThrown = true;
}
if(!exceptionThrown)
throw std::logic_error(methodName+"exception not thrown");
It would be nice (more readable, concise) if I could encapsulate all that, and do something like:
exceptionShouldBeThrown(expectNotEqual(someData, anotherData, methodName));
I dont want to use macro ...does anyone know how I could achieve the one-liner above with C++?