cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
26 lines
415 B
C++
26 lines
415 B
C++
/*
|
|
SPDX-FileCopyrightText: 2006 David Faure <faure@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-only
|
|
*/
|
|
|
|
#ifndef KMOUNTPOINTTEST_H
|
|
#define KMOUNTPOINTTEST_H
|
|
|
|
#include <QObject>
|
|
|
|
class KMountPointTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private Q_SLOTS:
|
|
void initTestCase();
|
|
|
|
void testCurrentMountPoints();
|
|
void testCurrentMountPointOptions();
|
|
void testPossibleMountPoints();
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|