我正在使用Microsoft的CppUnitTestFramework编写一些单元测试。
我想测试,如果我调用的方法抛出正确的异常。我的代码是:
TEST_METHOD(test_for_correct_exception_by_input_with_whitespaces)
{
std::string input{ "meet me at the corner" };
Assert::ExpectException<std::invalid_argument>(AutokeyCipher::encrypt(input, primer));
}
在下面的链接中,我写了类似于上一个答案的电话:
编译时,出现 C2064 错误:项不求值为带有0个参数的函数
为什么这样不起作用?
答案 0 :(得分:2)
您需要将要测试的代码包装在lambda表达式中,以供Assert::ExpectException
函数调用。
void Foo()
{
throw std::invalid_argument("test");
}
TEST_METHOD(Foo_ThrowsException)
{
auto func = [] { Foo(); };
Assert::ExpectException<std::invalid_argument>(func);
}