2
0

BsTestOutput.cpp 261 B

12345678910
  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. }