root/library/tests/unittest-cpp/ReportAssert.cpp
@
790
Revision 706, 231 bytes (checked in by smidl, 15 years ago) | |
---|---|
|
Line | |
---|---|
1 | #include "ReportAssert.h" |
2 | #include "AssertException.h" |
3 | |
4 | namespace UnitTest { |
5 | |
6 | void ReportAssert ( char const* description, char const* filename, int lineNumber ) { |
7 | throw AssertException ( description, filename, lineNumber ); |
8 | } |
9 | |
10 | } |
Note: See TracBrowser
for help on using the browser.