blob: a1810d908416d0f283c395c1f0d53a9198246bd1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "AssertException.h"
namespace UnitTest {
void ReportAssert(char const* description, char const* filename, int lineNumber)
{
throw AssertException(description, filename, lineNumber);
}
}
|