OSCAR-code/oscar/tests/rawdatatests.h
sawinglogz 7a852953be Move raw data signal tests into a separate class.
Otherwise QTest treats the signal handlers as separate tests.
2021-05-23 15:48:20 -04:00

36 lines
826 B
C++

/* Raw Data Unit Tests
*
* Copyright (c) 2021 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.