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-core/tests/auto/testdevices.h
2014-05-03 23:55:08 +02:00

33 lines
587 B
C++

#ifndef TESTDEVICES_H
#define TESTDEVICES_H
#include "guhtestbase.h"
class TestDevices : public GuhTestBase
{
Q_OBJECT
public:
explicit TestDevices(QObject *parent = 0);
TestDevices (const TestDevices &other) {}
TestDevices& operator=(const TestDevices &other) {}
private slots:
void getSupportedVendors();
void getSupportedDevices_data();
void getSupportedDevices();
void addConfiguredDevice_data();
void addConfiguredDevice();
void getConfiguredDevices();
void removeDevice();
void storedDevices();
};
#endif // TESTDEVICES_H