File indexing completed on 2024-09-08 03:33:25
0001 /* 0002 File : CommonTest.cpp 0003 Project : LabPlot 0004 Description : General test class 0005 -------------------------------------------------------------------- 0006 SPDX-FileCopyrightText: 2019 Stefan Gerlach <stefan.gerlach@uni.kn> 0007 0008 SPDX-License-Identifier: GPL-2.0-or-later 0009 */ 0010 0011 #include "CommonTest.h" 0012 #ifdef _WIN32 0013 #include <windows.h> 0014 #endif 0015 0016 void CommonTest::initTestCase() { 0017 #ifdef _WIN32 0018 // if (AttachConsole(ATTACH_PARENT_PROCESS)) { 0019 // freopen("CONOUT$", "w", stdout); 0020 // freopen("CONOUT$", "w", stderr); 0021 // } 0022 #endif 0023 }