BsTestOutput.cpp 476 B

123456789101112
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #include "BsTestOutput.h"
  4. #include "BsException.h"
  5. namespace bs
  6. {
  7. void ExceptionTestOutput::outputFail(const String& desc, const String& function, const String& file, long line)
  8. {
  9. BS_EXCEPT(UnitTestException, desc);
  10. }
  11. }