| 123456789101112 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #include "Testing/BsTestOutput.h"
- #include "Error/BsException.h"
- namespace bs
- {
- void ExceptionTestOutput::outputFail(const String& desc, const String& function, const String& file, long line)
- {
- BS_EXCEPT(UnitTestException, desc);
- }
- }
|