2013-07-22 08:50:39 +02:00
|
|
|
#ifndef PAYMENTSERVERTESTS_H
|
|
|
|
#define PAYMENTSERVERTESTS_H
|
|
|
|
|
|
|
|
#include "../paymentserver.h"
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
2013-11-14 19:21:16 +01:00
|
|
|
|
2013-07-22 08:50:39 +02:00
|
|
|
public slots:
|
|
|
|
void getRecipient(SendCoinsRecipient r);
|
2013-11-14 19:21:16 +01:00
|
|
|
|
2013-07-22 08:50:39 +02:00
|
|
|
public:
|
|
|
|
SendCoinsRecipient recipient;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PAYMENTSERVERTESTS_H
|