generated from general-packages/pika-pkg-template
23 lines
420 B
C
23 lines
420 B
C
|
/*
|
||
|
SPDX-FileCopyrightText: 2009 Constantin Berzan <exit3219@gmail.com>
|
||
|
|
||
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
/**
|
||
|
*/
|
||
|
class LocalFoldersRequestJobTest : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
private Q_SLOTS:
|
||
|
void initTestCase();
|
||
|
void testRequestWithNoDefaultResourceExisting();
|
||
|
void testRequestWithDefaultResourceAlreadyExisting();
|
||
|
void testMixedRequest();
|
||
|
};
|