root/library/tests/unittest-cpp/ReportAssert.cpp @ 418

Revision 418, 228 bytes (checked in by vbarta, 15 years ago)

#27: added UnitTest?++ to bdm sources, changed test_user_data to use it

Line 
1#include "ReportAssert.h"
2#include "AssertException.h"
3
4namespace UnitTest {
5
6void ReportAssert(char const* description, char const* filename, int lineNumber)
7{
8    throw AssertException(description, filename, lineNumber);
9}
10
11}
Note: See TracBrowser for help on using the browser.