Lines Matching refs:SpecialException
2919 CHECK_THROWS_MATCHES( doesNotThrow(), SpecialException, ExceptionMatcher{1} )
2923 REQUIRE_THROWS_MATCHES( doesNotThrow(), SpecialException, ExceptionMatcher{1} )
2934 CHECK_THROWS_MATCHES( throwsAsInt(1), SpecialException, ExceptionMatcher{1} )
2939 REQUIRE_THROWS_MATCHES( throwsAsInt(1), SpecialException, ExceptionMatcher{1} )
2951 CHECK_THROWS_MATCHES( throwsSpecialException(3), SpecialException, ExceptionMatcher{1} )
2953 SpecialException::what special exception has value of 1
2956 REQUIRE_THROWS_MATCHES( throwsSpecialException(4), SpecialException, ExceptionMatcher{1} )
2958 SpecialException::what special exception has value of 1
2967 CHECK_THROWS_MATCHES( throwsSpecialException(1), SpecialException, ExceptionMatcher{1} )
2969 SpecialException::what special exception has value of 1
2972 REQUIRE_THROWS_MATCHES( throwsSpecialException(2), SpecialException, ExceptionMatcher{2} )
2974 SpecialException::what special exception has value of 2
3044 …REQUIRE_THROWS_MATCHES( throwsSpecialException(2), SpecialException, !Message("DerivedException::w…
3046 SpecialException::what not exception message matches "DerivedException::what"
3049 …REQUIRE_THROWS_MATCHES( throwsSpecialException(2), SpecialException, Message("SpecialException::wh…
3051 SpecialException::what exception message matches "SpecialException::what"