| 1 | //************************************ bs::framework - Copyright 2018 Marko Pintera **************************************// |
|---|---|
| 2 | //*********** Licensed under the MIT license. See LICENSE.md for full terms. This notice is not to be removed. ***********// |
| 3 | #include "Testing/BsTestOutput.h" |
| 4 | #include "Error/BsException.h" |
| 5 | |
| 6 | namespace bs |
| 7 | { |
| 8 | void ExceptionTestOutput::outputFail(const String& desc, const String& function, const String& file, long line) |
| 9 | { |
| 10 | BS_EXCEPT(UnitTestException, desc); |
| 11 | } |
| 12 | } |
| 13 |