16 lines
193 B
C++
16 lines
193 B
C++
#include "AssertException.h"
|
|
|
|
#ifndef UNITTEST_NO_EXCEPTIONS
|
|
|
|
namespace UnitTest {
|
|
|
|
AssertException::AssertException()
|
|
{}
|
|
|
|
AssertException::~AssertException() throw()
|
|
{}
|
|
|
|
}
|
|
|
|
#endif
|