unittest-cpp/UnitTest++/ReportAssert.h
2016-01-29 22:15:10 -06:00

12 lines
215 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