mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
20 lines
514 B
C++
20 lines
514 B
C++
/* Device Connection Unit Tests
|
|
*
|
|
* Copyright (c) 2020-2022 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)
|