When I test my C ++ class with Boost.Test and change my own custom exceptions (these are instances of my class), this is the message I see in the log:
unknown location:0: fatal error in "testMethod": unknown type
This is very uninformative, and I donβt know how to teach Boost.Test to convert my exception to a string and display it correctly. My class Exceptionhas operator string(), but that doesn't help. Any ideas? Thank!
source
share