2018-07-27 00:36:45 +02:00
|
|
|
// Copyright (c) 2009-2018 The Bitcoin Core developers
|
2014-09-05 13:11:11 +02:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#ifndef BITCOIN_QT_TEST_PAYMENTSERVERTESTS_H
|
|
|
|
#define BITCOIN_QT_TEST_PAYMENTSERVERTESTS_H
|
2013-07-22 08:50:39 +02:00
|
|
|
|
2017-08-15 17:31:26 +02:00
|
|
|
#include <qt/paymentserver.h>
|
2013-07-22 08:50:39 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <QObject>
|
|
|
|
#include <QTest>
|
|
|
|
|
2013-07-22 08:50:39 +02:00
|
|
|
class PaymentServerTests : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2015-07-14 13:59:05 +02:00
|
|
|
private Q_SLOTS:
|
2013-07-22 08:50:39 +02:00
|
|
|
void paymentServerTests();
|
|
|
|
};
|
|
|
|
|
|
|
|
// Dummy class to receive paymentserver signals.
|
2014-09-05 13:11:11 +02:00
|
|
|
// If SendCoinsRecipient was a proper QObject, then
|
|
|
|
// we could use QSignalSpy... but it's not.
|
2013-07-22 08:50:39 +02:00
|
|
|
class RecipientCatcher : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2013-11-14 19:21:16 +01:00
|
|
|
|
2015-07-14 13:59:05 +02:00
|
|
|
public Q_SLOTS:
|
2017-08-01 23:40:19 +02:00
|
|
|
void getRecipient(const SendCoinsRecipient& r);
|
2013-11-14 19:21:16 +01:00
|
|
|
|
2013-07-22 08:50:39 +02:00
|
|
|
public:
|
|
|
|
SendCoinsRecipient recipient;
|
|
|
|
};
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_QT_TEST_PAYMENTSERVERTESTS_H
|