Anoncoin  0.9.4
P2P Digital Currency
paymentservertests.h
Go to the documentation of this file.
1 #ifndef PAYMENTSERVERTESTS_H
2 #define PAYMENTSERVERTESTS_H
3 
4 #include "../paymentserver.h"
5 
6 #include <QObject>
7 #include <QTest>
8 
9 class PaymentServerTests : public QObject
10 {
11  Q_OBJECT
12 
13 private slots:
14  void paymentServerTests();
15 };
16 
17 // Dummy class to receive paymentserver signals.
18 // If SendCoinsRecipient was a proper QObject, then we could use
19 // QSignalSpy... but it's not.
20 class RecipientCatcher : public QObject
21 {
22  Q_OBJECT
23 
24 public slots:
26 
27 public:
29 };
30 
31 #endif // PAYMENTSERVERTESTS_H
SendCoinsRecipient recipient
void getRecipient(SendCoinsRecipient r)