diff --git a/tests/signal-all.cpp b/tests/signal-all.cpp index 879546edb6edcc4a29d177a47de662143ac883d5..ef54a17baca740d2ff084cd8d614e03a08ba76c7 100644 --- a/tests/signal-all.cpp +++ b/tests/signal-all.cpp @@ -210,7 +210,28 @@ BOOST_AUTO_TEST_CASE(signal_caster_basics) { /// Unregister a type asig_caster->unregisterCast(typeid(double)); + + /// Unregister the type a second time to generate exception + bool res= false; + try { + asig_caster->unregisterCast(typeid(double)); + } catch (ExceptionSignal &aes) + { + res = (aes.getCode() == ExceptionSignal::GENERIC); + } + BOOST_CHECK(res); + /// Get the type cast to generate exception + res= false; + double ad=2.0; + output_test_stream output; + try { + asig_caster->disp(ad,output); + } catch (ExceptionSignal &aes) + { + res = (aes.getCode() == ExceptionSignal::BAD_CAST); + } + BOOST_CHECK(res); asig_caster->destroy(); BOOST_CHECK(true); }