| 12345678910111213141516171819202122232425262728293031323334 |
- #include "AssertException.h"
- #include <cstring>
- namespace UnitTest {
- AssertException::AssertException(char const* description, char const* filename, int lineNumber)
- : m_lineNumber(lineNumber)
- {
- using namespace std;
- strcpy(m_description, description);
- 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;
- }
- }
|