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

Revision 706, 231 bytes (checked in by smidl, 15 years ago)

eol-native

  • Property svn:eol-style set to native
Line 
1#include "ReportAssert.h"
2#include "AssertException.h"
3
4namespace UnitTest {
5
6void 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.