File indexing completed on 2024-10-06 12:21:14
0001 /* 0002 SPDX-FileCopyrightText: 2006 David Faure <faure@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-only 0005 */ 0006 0007 #ifndef KMOUNTPOINTTEST_H 0008 #define KMOUNTPOINTTEST_H 0009 0010 #include <QObject> 0011 0012 class KMountPointTest : public QObject 0013 { 0014 Q_OBJECT 0015 private Q_SLOTS: 0016 void initTestCase(); 0017 0018 void testCurrentMountPoints(); 0019 void testCurrentMountPointOptions(); 0020 void testPossibleMountPoints(); 0021 0022 private: 0023 }; 0024 0025 #endif