|
@@ -0,0 +1,26 @@
|
|
|
|
|
+//********************************** Banshee Engine (www.banshee3d.com) **************************************************//
|
|
|
|
|
+//**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
|
|
|
|
|
+#pragma once
|
|
|
|
|
+
|
|
|
|
|
+#include "BsTestOutput.h"
|
|
|
|
|
+#include "BsPrerequisitesUtil.h"
|
|
|
|
|
+
|
|
|
|
|
+namespace BansheeEngine
|
|
|
|
|
+{
|
|
|
|
|
+ /** @addtogroup Testing
|
|
|
|
|
+ * @{
|
|
|
|
|
+ */
|
|
|
|
|
+
|
|
|
|
|
+ /** Outputs unit test failures to stdout. */
|
|
|
|
|
+ class BS_UTILITY_EXPORT ConsoleTestOutput : public TestOutput
|
|
|
|
|
+ {
|
|
|
|
|
+ public:
|
|
|
|
|
+ /** @copydoc TestOutput::outputFail */
|
|
|
|
|
+ void outputFail(const String& desc,
|
|
|
|
|
+ const String& function,
|
|
|
|
|
+ const String& file,
|
|
|
|
|
+ long line) final override;
|
|
|
|
|
+ };
|
|
|
|
|
+
|
|
|
|
|
+ /** @} */
|
|
|
|
|
+}
|