#include "teststore.h"
#include "testauth.h"
#include "testusers.h"
+#include "testservices.h"
+
+namespace
+{
class AFTER_CONNECTED_NOTIFIER : public PROPERTY_NOTIFIER_BASE<bool>,
private NONCOPYABLE {
bool reconnectOnTariffChange;
};
+}
+
namespace tut
{
struct reconnect_on_tariff_change_data {
TEST_STORE store;
TEST_AUTH auth;
TEST_USERS users;
- USER_IMPL user(&settings, &store, &tariffs, &admin, &users);
+ TEST_SERVICES services;
+ USER_IMPL user(&settings, &store, &tariffs, &admin, &users, services);
AFTER_CONNECTED_NOTIFIER connectionNotifier;
TEST_STORE store;
TEST_AUTH auth;
TEST_USERS users;
- USER_IMPL user(&settings, &store, &tariffs, &admin, &users);
+ TEST_SERVICES services;
+ USER_IMPL user(&settings, &store, &tariffs, &admin, &users, services);
AFTER_CONNECTED_NOTIFIER connectionNotifier;