c0274df69a
NO_CHANGELOG
31 lines
496 B
C++
31 lines
496 B
C++
/*
|
|
SPDX-FileCopyrightText: 2016 Eike Hein <hein@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
#ifndef DIALOGSTATETEST_H
|
|
#define DIALOGSTATETEST_H
|
|
|
|
#include <QTest>
|
|
|
|
#include "plasmaquick/dialog.h"
|
|
|
|
class DialogStateTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public Q_SLOTS:
|
|
void initTestCase();
|
|
void cleanupTestCase();
|
|
|
|
private Q_SLOTS:
|
|
void windowState();
|
|
|
|
private:
|
|
bool verifyState(PlasmaQuick::Dialog *dialog) const;
|
|
|
|
PlasmaQuick::Dialog *m_dialog;
|
|
};
|
|
|
|
#endif
|