trap CRT assertions and report assertions which happen inside CppUnit tests in a better way
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59838 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -8,7 +8,30 @@
|
||||
#endif
|
||||
|
||||
// thrown when assert fails in debug build
|
||||
class TestAssertFailure { };
|
||||
class TestAssertFailure
|
||||
{
|
||||
public:
|
||||
TestAssertFailure(const wxString& file,
|
||||
int line,
|
||||
const wxString& func,
|
||||
const wxString& cond,
|
||||
const wxString& msg)
|
||||
: m_file(file),
|
||||
m_line(line),
|
||||
m_func(func),
|
||||
m_cond(cond),
|
||||
m_msg(msg)
|
||||
{
|
||||
}
|
||||
|
||||
const wxString m_file;
|
||||
const int m_line;
|
||||
const wxString m_func;
|
||||
const wxString m_cond;
|
||||
const wxString m_msg;
|
||||
|
||||
wxDECLARE_NO_ASSIGN_CLASS(TestAssertFailure);
|
||||
};
|
||||
|
||||
// macro to use for the functions which are supposed to fail an assertion
|
||||
#if wxDEBUG_LEVEL
|
||||
|
Reference in New Issue
Block a user