------------------------------------------------------------------------------
| 122 | |
| 123 | //------------------------------------------------------------------------------ |
| 124 | void |
| 125 | SetupForDebugging() |
| 126 | { |
| 127 | auto tow = TestOutputWindow::New(); |
| 128 | OutputWindow::SetInstance(tow); |
| 129 | |
| 130 | #if (defined(_WIN32) && defined(_DEBUG)) || !defined(NDEBUG) |
| 131 | Object::SetGlobalWarningDisplay(true); |
| 132 | std::cout << "INFO: test called Object::SetGlobalWarningDisplay(true)\n"; |
| 133 | #endif |
| 134 | } |
| 135 | |
| 136 | |
| 137 | //------------------------------------------------------------------------------ |