Searched refs:MyException (Results 1 – 1 of 1) sorted by relevance
574 class MyException {}; class577 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()