You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
567 B
29 lines
567 B
9 years ago
|
#ifndef QTXDG_TEST_H
|
||
|
#define QTXDG_TEST_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QString>
|
||
|
#include <QDebug>
|
||
|
|
||
|
class QtXdgTest : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
private slots:
|
||
|
void testCustomFormat();
|
||
|
|
||
|
private:
|
||
|
// Test that XdgDesktopFile and xdg-mime script agree on
|
||
|
// default application for each mime-type.
|
||
|
void testDefaultApp();
|
||
|
|
||
|
void testTextHtml();
|
||
|
void testMeldComparison();
|
||
|
void compare(QString mimetype);
|
||
|
QString xdgDesktopFileDefaultApp(QString mimetype);
|
||
|
QString xdgUtilDefaultApp(QString mimetype);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif /* QTXDG_TEST_H */
|