File indexing completed on 2024-04-28 05:50:35

0001 /*
0002     SPDX-FileCopyrightText: 2008 Robert Knight <robertknight@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 // Own
0008 #include "session/SessionManagerTest.h"
0009 
0010 // KDE
0011 #include <QTest>
0012 
0013 using namespace Konsole;
0014 
0015 void SessionManagerTest::testWarnNotImplemented()
0016 {
0017     qWarning() << "SessionManager tests not implemented";
0018 }
0019 
0020 void SessionManagerTest::init()
0021 {
0022 }
0023 
0024 void SessionManagerTest::cleanup()
0025 {
0026 }
0027 
0028 QTEST_MAIN_CORE(SessionManagerTest)
0029 
0030 #include "moc_SessionManagerTest.cpp"