OSCAR-code/oscar/tests/deviceconnectiontests.h
sawinglogz 553cf59a95 Move connection creation to DeviceConnectionManager.
Calling openConnection will return an open connection or nullptr.
Deleting the connection will close it.

SerialPort now uses this under the hood, while still presenting
the QSerialPort-compatible interface.
2020-07-10 11:51:52 -04:00

20 lines
509 B
C++

/* Device Connection Unit Tests
*
* Copyright (c) 2020 The OSCAR Team
*
* 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();
void testSerialPortScanning();
void testOximeterConnection();
};
DECLARE_TEST(DeviceConnectionTests)