File indexing completed on 2024-04-28 03:51:41

0001 /*
0002     This file is part of the KDE Baloo project.
0003     SPDX-FileCopyrightText: 2015 Vishesh Handa <vhanda@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0006 */
0007 
0008 #include "fileindexerconfigutils.h"
0009 #include "filtereddiriterator.h"
0010 #include "fileindexerconfig.h"
0011 
0012 #include <QTest>
0013 
0014 class UnIndexedFileIterator : public QObject
0015 {
0016     Q_OBJECT
0017 private Q_SLOTS:
0018     void test();
0019 };
0020 
0021 using namespace Baloo;
0022 
0023 void UnIndexedFileIterator::test()
0024 {
0025     // Bah!!
0026     // Testing this is complex!
0027     // FIXME: How in the world should I test this?
0028 }
0029 
0030 QTEST_GUILESS_MAIN(UnIndexedFileIterator)
0031 
0032 #include "unindexedfileiteratortest.moc"