blob: 49f7ba7882f5260103b22b47515a4a11b5e90289 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#include "AssertException.h"
#include <cstring>
namespace UnitTest {
AssertException::AssertException(char const* description, char const* filename, int const lineNumber)
: m_lineNumber(lineNumber)
{
std::strcpy(m_description, description);
std::strcpy(m_filename, filename);
}
AssertException::~AssertException() throw()
{
}
char const* AssertException::what() const throw()
{
return m_description;
}
char const* AssertException::Filename() const
{
return m_filename;
}
int AssertException::LineNumber() const
{
return m_lineNumber;
}
}
|