mirror of
https://github.com/unittest-cpp/unittest-cpp
synced 2026-09-27 00:28:49 +03:00
CMakeLists was modified to support this, then include paths for the test executable also had to be modified to include UnitTest++.
12 lines
212 B
C++
12 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
|