mirror of
https://github.com/KDE/konsole.git
synced 2025-12-23 23:38:08 -05:00
https://community.kde.org/Policies/Licensing_Policy#SPDX_Statements https://community.kde.org/Guidelines_and_HOWTOs/Licensing
29 lines
453 B
C++
29 lines
453 B
C++
/*
|
|
SPDX-FileCopyrightText: 2008 Robert Knight <robertknight@gmail.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
// Own
|
|
#include "session/SessionManagerTest.h"
|
|
|
|
// KDE
|
|
#include <qtest.h>
|
|
|
|
using namespace Konsole;
|
|
|
|
void SessionManagerTest::testWarnNotImplemented()
|
|
{
|
|
qWarning() << "SessionManager tests not implemented";
|
|
}
|
|
|
|
void SessionManagerTest::init()
|
|
{
|
|
}
|
|
|
|
void SessionManagerTest::cleanup()
|
|
{
|
|
}
|
|
|
|
QTEST_MAIN_CORE(SessionManagerTest)
|