28 Apr
2010
28 Apr
'10
4:39 a.m.
Jan Rudoszanski
Hi
Is there any possibility for boost.test execution_monitor to not to catch exceptions thrown from code that I'm examining in a test case?
Boost.Test does not prevent you from catching any exceptions. You can always say 'catch throw' and it will stop at first exception being throw. Also I am not sure in general what do you expect to happened in case if Boost.Test let's say do not catch your exception. How would it miraculously let you know where exception comes from? What I do recommend is to use Boost.Exception. These comes along with file+line where it being thrown from. Gennadiy