mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 04:20:46 +08:00
37 lines
856 B
Plaintext
37 lines
856 B
Plaintext
// Copyright (C) 2019 Samuel Gaist <samuel.gaist@idiap.ch>
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
|
|
#include <QTest>
|
|
#include <QSignalSpy>
|
|
#include <QSessionManager>
|
|
#include <AppKit/AppKit.h>
|
|
|
|
// Q_DECLARE_METATYPE(QSessionManager)
|
|
|
|
class tst_SessionManagement_macOS : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private slots:
|
|
void stopApplication();
|
|
};
|
|
|
|
/*
|
|
Test that session handling code is properly called
|
|
*/
|
|
void tst_SessionManagement_macOS::stopApplication()
|
|
{
|
|
int argc = 0;
|
|
QGuiApplication app(argc, nullptr);
|
|
QSignalSpy spy(&app, &QGuiApplication::commitDataRequest);
|
|
QTimer::singleShot(1000, []() {
|
|
[NSApp terminate:nil];
|
|
});
|
|
app.exec();
|
|
QCOMPARE(spy.count(), 1);
|
|
}
|
|
|
|
QTEST_APPLESS_MAIN(tst_SessionManagement_macOS)
|
|
#include "tst_sessionmanagement_macos.moc"
|