ReportAssert.h 172 B

12345678910
  1. #ifndef UNITTEST_ASSERT_H
  2. #define UNITTEST_ASSERT_H
  3. namespace UnitTest {
  4. void ReportAssert(char const* description, char const* filename, int lineNumber);
  5. }
  6. #endif