/* * Deskflow -- mouse and keyboard sharing utility * SPDX-FileCopyrightText: (C) 2025 Chris Rizzitello * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception */ #include "base/Log.h" #include "platform/OSXKeyState.h" #include class OSXKeyStateTests : public QObject { Q_OBJECT private Q_SLOTS: void initTestCase(); // Test are run in order top to bottom void mapModifiersFromOSX_OSXMask(); void fakePollShift(); void fakePollChar(); void fakePollCharWithModifier(); private: bool isKeyPressed(const OSXKeyState &keyState, KeyButton button); Arch m_arch; Log m_log; };