This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-remoteproxy/tests/nymea-remoteproxy-tests.h
2018-08-02 14:04:42 +02:00

31 lines
450 B
C++

#ifndef NYMEA_REMOTEPROXY_TESTS_H
#define NYMEA_REMOTEPROXY_TESTS_H
#include <QtTest>
#include <QObject>
class RemoteProxyTests : public QObject
{
Q_OBJECT
public:
explicit RemoteProxyTests(QObject *parent = nullptr);
private:
void cleanUpEngine();
void restartEngine();
protected slots:
void initTestCase();
void cleanupTestCase();
private slots:
void startStopServer();
};
#endif // NYMEA_REMOTEPROXY_TESTS_H