mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-04 18:20:42 +00:00
36 lines
831 B
C++
36 lines
831 B
C++
/* Raw Data Unit Tests
|
|
*
|
|
* Copyright (c) 2021-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 RawDataTests : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private slots:
|
|
void testQIODeviceInterface();
|
|
};
|
|
DECLARE_TEST(RawDataTests)
|
|
|
|
class _RawDataTestSignalSink : public QObject
|
|
{
|
|
Q_OBJECT
|
|
friend RawDataTests;
|
|
private slots:
|
|
void onAboutToClose();
|
|
void onChannelReadyRead(int);
|
|
void onReadChannelFinished();
|
|
void onReadyRead();
|
|
private:
|
|
_RawDataTestSignalSink();
|
|
bool m_aboutToClose;
|
|
int m_channelReadyRead;
|
|
bool m_readChannelFinished;
|
|
bool m_readyRead;
|
|
};
|
|
// Do not declare this as a test to be executed.
|