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/BsConsoleTestOutput.h" |
4 | |
5 | #include <iostream> |
6 | |
7 | namespace bs |
8 | { |
9 | void ConsoleTestOutput::outputFail(const String& desc, |
10 | const String& function, |
11 | const String& file, |
12 | long line) |
13 | { |
14 | std::cout << file << ":" << line << ": failure: " << desc << std::endl; |
15 | } |
16 | } |
17 | |