blob: a0c044af73050bf0f1448608baa93bb8d8911e82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#ifndef MOCKDEFS_H
#define MOCKDEFS_H
#include <pq-mock.h>
#include <visibility.h>
#include <dryice.h>
#include <portage.h>
#include <users.h>
#include <maintenance.h>
#include <notifications.h>
#include <selectcommandUtil.impl.h>
class DLL_PUBLIC Service : public IceTray::DryIce, PQ::Mock {
public:
Service();
};
class DLL_PUBLIC Maintenance : public IceTray::DryIce, PQ::Mock {
public:
Maintenance();
};
class DLL_PUBLIC TestClient : public IceTray::DryIceClient {
public:
TestClient();
Gentoo::MaintenancePrx m;
Gentoo::PortagePrx p;
Gentoo::NotificationsPrx n;
Gentoo::MailServerPrx ms;
Gentoo::UsersPrx u;
};
#define SQL_REQUIRE_EQUAL(sql, type, expected) \
db->select(sql)->forEachRow<type>([&expected](const auto & n) { BOOST_REQUIRE_EQUAL(expected, n); });
#endif
|