File indexing completed on 2024-09-15 03:37:21
0001 /* 0002 This software is a contribution of the LiMux project of the city of Munich. 0003 SPDX-FileCopyrightText: 2021 Robert Hoffmann <robert@roberthoffmann.de> 0004 0005 SPDX-License-Identifier: LGPL-2.0-or-later 0006 */ 0007 0008 #ifndef KNETWORKMOUNTSTESTCANONICAL_H 0009 #define KNETWORKMOUNTSTESTCANONICAL_H 0010 0011 #include <QObject> 0012 #include <QTemporaryDir> 0013 0014 class KNetworkMountsTestCanonical : public QObject 0015 { 0016 Q_OBJECT 0017 private Q_SLOTS: 0018 void initTestCase(); 0019 void cleanupTestCase(); 0020 0021 void testCanonicalSymlinkPath_data(); 0022 void testCanonicalSymlinkPath(); 0023 0024 private: 0025 QString m_configFileName; 0026 QTemporaryDir m_tmpDir; 0027 }; 0028 0029 #endif