Home
last modified time | relevance | path

Searched refs:MyException (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-more-actions_test.cc574 class MyException {}; class
577 const Action<double(char ch)> a = Throw(MyException()); in TEST()
578 EXPECT_THROW(a.Perform(std::make_tuple('0')), MyException); in TEST()
582 const Action<double()> a = Throw(MyException()); in TEST()
583 EXPECT_THROW(a.Perform(std::make_tuple()), MyException); in TEST()