BsTestOutput.cpp 400 B

123456789101112131415
  1. #include "BsTestOutput.h"
  2. #include "BsException.h"
  3. namespace BansheeEngine
  4. {
  5. void ExceptionTestOutput::outputFail(const String& desc, const String& function, const String& file, long line)
  6. {
  7. throw UnitTestException(desc, function, file.c_str(), line);
  8. }
  9. void ExceptionTestOutput::outputSuccess(const String& desc, const String& function, const String& file, long line)
  10. {
  11. // Do nothing
  12. }
  13. }