2021-05-23 16:25:35 +00:00
|
|
|
/* Raw Data Unit Tests
|
|
|
|
*
|
2021-11-02 20:34:12 +00:00
|
|
|
* Copyright (c) 2021-2022 The OSCAR Team
|
2021-05-23 16:25:35 +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 RawDataTests : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private slots:
|
|
|
|
void testQIODeviceInterface();
|
2021-05-23 19:48:20 +00:00
|
|
|
};
|
|
|
|
DECLARE_TEST(RawDataTests)
|
2021-05-23 16:25:35 +00:00
|
|
|
|
2021-05-23 19:48:20 +00:00
|
|
|
class _RawDataTestSignalSink : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
friend RawDataTests;
|
|
|
|
private slots:
|
2021-05-23 16:25:35 +00:00
|
|
|
void onAboutToClose();
|
|
|
|
void onChannelReadyRead(int);
|
|
|
|
void onReadChannelFinished();
|
|
|
|
void onReadyRead();
|
2021-05-23 19:48:20 +00:00
|
|
|
private:
|
|
|
|
_RawDataTestSignalSink();
|
2021-05-23 16:25:35 +00:00
|
|
|
bool m_aboutToClose;
|
|
|
|
int m_channelReadyRead;
|
|
|
|
bool m_readChannelFinished;
|
|
|
|
bool m_readyRead;
|
|
|
|
};
|
2021-05-23 19:48:20 +00:00
|
|
|
// Do not declare this as a test to be executed.
|