knetworkmountsteststatic.h 710 B

12345678910111213141516171819202122232425262728
  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 KNETWORKMOUNTSTESTSTATIC_H
  7. #define KNETWORKMOUNTSTESTSTATIC_H
  8. #include <QObject>
  9. class KNetworkMountsTestStatic : public QObject
  10. {
  11. Q_OBJECT
  12. private Q_SLOTS:
  13. void testStaticFunctions_data();
  14. void testStaticFunctions();
  15. void testStaticKNetworkMountOptionToString_data();
  16. void testStaticKNetworkMountOptionToString();
  17. void testStaticKNetworkMountsTypeToString_data();
  18. void testStaticKNetworkMountsTypeToString();
  19. private:
  20. QString m_configFileName;
  21. };
  22. #endif