mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-05 10:17:30 -05:00
30 lines
571 B
C
30 lines
571 B
C
|
#ifndef PAYMENTSERVERTESTS_H
|
||
|
#define PAYMENTSERVERTESTS_H
|
||
|
|
||
|
#include <QTest>
|
||
|
#include <QObject>
|
||
|
|
||
|
#include "../paymentserver.h"
|
||
|
|
||
|
class PaymentServerTests : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
private slots:
|
||
|
void paymentServerTests();
|
||
|
};
|
||
|
|
||
|
// Dummy class to receive paymentserver signals.
|
||
|
// If SendCoinsRecipient was a proper QObject, then we could use
|
||
|
// QSignalSpy... but it's not.
|
||
|
class RecipientCatcher : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public slots:
|
||
|
void getRecipient(SendCoinsRecipient r);
|
||
|
public:
|
||
|
SendCoinsRecipient recipient;
|
||
|
};
|
||
|
|
||
|
#endif // PAYMENTSERVERTESTS_H
|