generated from general-packages/pika-pkg-template
a8e7e301c1
Some checks failed
PikaOS Package Build & Release (Canary) (amd64-v3) / build (push) Failing after 12s
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
/*
|
|
SPDX-FileCopyrightText: 2006 Volker Krause <vkrause@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
class CollectionJobTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private Q_SLOTS:
|
|
void initTestCase();
|
|
void testTopLevelList();
|
|
void testFolderList();
|
|
void testSignalOrder();
|
|
void testNonRecursiveFolderList();
|
|
void testEmptyFolderList();
|
|
void testSearchFolderList();
|
|
void testResourceFolderList();
|
|
void testMimeTypeFilter();
|
|
void testCreateDeleteFolder_data();
|
|
void testCreateDeleteFolder();
|
|
void testIllegalDeleteFolder();
|
|
void testStatistics();
|
|
void testModify_data();
|
|
void testModify();
|
|
void testIllegalModify();
|
|
void testUtf8CollectionName_data();
|
|
void testUtf8CollectionName();
|
|
void testMultiList();
|
|
void testRecursiveMultiList();
|
|
void testNonOverlappingRootList();
|
|
void testRidFetch();
|
|
void testRidCreateDelete_data();
|
|
void testRidCreateDelete();
|
|
void testAncestorRetrieval();
|
|
void testListPreference();
|
|
void testReference();
|
|
};
|