nextcloud-desktop/test/testowncloudpropagator.h

30 lines
662 B
C
Raw Normal View History

/*
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>
#include "mirall/owncloudpropagator.h"
2013-09-04 19:29:19 +04:00
#include "mirall/progressdatabase.h"
using namespace Mirall;
class TestOwncloudPropagator : public QObject
{
Q_OBJECT
private slots:
void testUpdateErrorFromSession()
{
2013-09-04 19:29:19 +04:00
OwncloudPropagator propagator( NULL, QLatin1String("test1"), QLatin1String("test2"), new ProgressDatabase);
QVERIFY( true );
}
};
#endif