1 /*
2     This software is a contribution of the LiMux project of the city of Munich.
3     SPDX-FileCopyrightText: 2021 Robert Hoffmann <robert@roberthoffmann.de>
4 
5     SPDX-License-Identifier: LGPL-2.0-or-later
6 */
7 
8 #ifndef KNETWORKMOUNTSTESTCANONICAL_H
9 #define KNETWORKMOUNTSTESTCANONICAL_H
10 
11 #include <QObject>
12 #include <QTemporaryDir>
13 
14 class KNetworkMountsTestCanonical : public QObject
15 {
16     Q_OBJECT
17 private Q_SLOTS:
18     void initTestCase();
19     void cleanupTestCase();
20 
21     void testCanonicalSymlinkPath_data();
22     void testCanonicalSymlinkPath();
23 
24 private:
25     QString m_configFileName;
26     QTemporaryDir m_tmpDir;
27 };
28 
29 #endif
30