mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 04:55:48 +03:00
e7e319e3f5
This test does nothing, remove problematic line"
25 lines
563 B
C++
25 lines
563 B
C++
/*
|
|
This software is in the public domain, furnished "as is", without technical
|
|
support, and with no warranty, express or implied, as to its usefulness for
|
|
any purpose.
|
|
*/
|
|
|
|
#ifndef MIRALL_TESTOWNCLOUDPROPAGATOR_H
|
|
#define MIRALL_TESTOWNCLOUDPROPAGATOR_H
|
|
|
|
#include <QtTest>
|
|
|
|
|
|
class TestOwncloudPropagator : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private slots:
|
|
void testUpdateErrorFromSession()
|
|
{
|
|
// OwncloudPropagator propagator( NULL, QLatin1String("test1"), QLatin1String("test2"), new ProgressDatabase);
|
|
QVERIFY( true );
|
|
}
|
|
};
|
|
|
|
#endif
|