blob: 0b5d6dde6c1ae32b44b7fcba3c25b6adf55d4242 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef UNITTEST_ASSERT_H
#define UNITTEST_ASSERT_H
#include "HelperMacros.h"
namespace UnitTest {
UNITTEST_LINKAGE void ReportAssert(char const* description, char const* filename, int lineNumber);
}
#endif
|