knetworkmountstestpaths.h 533 B

123456789101112131415161718192021222324252627
  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. SPDX-License-Identifier: LGPL-2.0-or-later
  5. */
  6. #ifndef KNETWORKMOUNTSTESTPATHS_H
  7. #define KNETWORKMOUNTSTESTPATHS_H
  8. #include <QObject>
  9. class KNetworkMountsTestPaths : public QObject
  10. {
  11. Q_OBJECT
  12. private Q_SLOTS:
  13. void initTestCase();
  14. void cleanupTestCase();
  15. void testPaths_data();
  16. void testPaths();
  17. private:
  18. QString m_configFileName;
  19. };
  20. #endif