mirror of
https://github.com/holub/mame
synced 2025-04-30 19:57:11 +03:00
13 lines
212 B
C++
13 lines
212 B
C++
#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
|