mirror of
https://github.com/unittest-cpp/unittest-cpp
synced 2026-09-27 08:33:45 +03:00
CMakeLists was modified to support this, then include paths for the test executable also had to be modified to include UnitTest++.
17 lines
183 B
C++
17 lines
183 B
C++
#include "AssertException.h"
|
|
|
|
#ifndef UNITTEST_NO_EXCEPTIONS
|
|
|
|
namespace UnitTest {
|
|
|
|
AssertException::AssertException()
|
|
{
|
|
}
|
|
|
|
AssertException::~AssertException() throw()
|
|
{
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|