2020-06-05 21:01:58 +00:00
|
|
|
/* Device Connection Unit Tests
|
|
|
|
*
|
2021-11-02 20:34:12 +00:00
|
|
|
* Copyright (c) 2020-2022 The OSCAR Team
|
2020-06-05 21:01:58 +00:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* for more details. */
|
|
|
|
|
|
|
|
#include "tests/AutoTest.h"
|
|
|
|
|
|
|
|
class DeviceConnectionTests : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private slots:
|
|
|
|
void testSerialPortInfoSerialization();
|
2020-06-06 20:53:47 +00:00
|
|
|
void testSerialPortScanning();
|
2020-06-15 21:15:37 +00:00
|
|
|
void testOximeterConnection();
|
2020-06-05 21:01:58 +00:00
|
|
|
};
|
|
|
|
DECLARE_TEST(DeviceConnectionTests)
|