| 123456789101112131415 |
- #include "BsTestOutput.h"
- #include "BsException.h"
- namespace BansheeEngine
- {
- void ExceptionTestOutput::outputFail(const String& desc, const String& function, const String& file, long line)
- {
- throw UnitTestException(desc, function, file.c_str(), line);
- }
- void ExceptionTestOutput::outputSuccess(const String& desc, const String& function, const String& file, long line)
- {
- // Do nothing
- }
- }
|