使用GoogleTest验证异常消息

时间:2013-09-12 21:20:57

标签: c++ exception-handling googletest

是否可以验证异常引发的消息?目前可以做到:

ASSERT_THROW(statement, exception_type)

这一切都很好,但没有我在哪里可以找到一种方法来测试e.what()是我真正想要的。这是不是可以通过谷歌测试吗?

1 个答案:

答案 0 :(得分:2)

以下内容将起作用。只是以某种方式捕获异常,然后在EXPECT_STREQ调用上执行what()

#include "gtest/gtest.h"

#include <exception>

class myexception: public std::exception
{
  virtual const char* what() const throw()
  {
    return "My exception happened";
  }
} myex;


TEST(except, what)
{
  try {
    throw myex;
  } catch (std::exception& ex) {
      EXPECT_STREQ("My exception happened", ex.what());
  }

}

int main(int argc, char **argv) {
  ::testing::InitGoogleTest(&argc, argv);
  return RUN_ALL_TESTS();
}