1/*
2 * SPDX-FileCopyrightText: 2014-2015 David Rosca <nowrep@gmail.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
5 */
6
7#ifndef MANAGERTEST_H
8#define MANAGERTEST_H
9
10#include <QObject>
11
12class ManagerTest : public QObject
13{
14 Q_OBJECT
15
16private Q_SLOTS:
17 void initTestCase();
18 void cleanup();
19
20 void bluezNotRunningTest();
21 void bluezNotExportingInterfacesTest();
22 void bluezEmptyManagedObjectsTest();
23 void bluezNoAdaptersTest();
24 void bluezShutdownTest();
25
26 void usableAdapterTest();
27 void deviceForAddressTest();
28 void adapterWithDevicesRemovedTest();
29 void bug364416();
30 void bug377405();
31};
32
33#endif // MANAGERTEST_H
34

source code of bluez-qt/autotests/managertest.h