Add autotest

wilder
Montel Laurent 9 years ago
parent 6f42ae3c62
commit 9a94fd59cd
  1. 32
      src/filter/autotests/filterimporterpathcachetest.cpp
  2. 35
      src/filter/autotests/filterimporterpathcachetest.h

@ -0,0 +1,32 @@
/*
Copyright (c) 2017 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "filterimporterpathcachetest.h"
#include <QTest>
QTEST_MAIN(FilterImporterPathCacheTest)
FilterImporterPathCacheTest::FilterImporterPathCacheTest(QObject *parent)
: QObject(parent)
{
}
FilterImporterPathCacheTest::~FilterImporterPathCacheTest()
{
}

@ -0,0 +1,35 @@
/*
Copyright (c) 2017 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef FILTERIMPORTERPATHCACHETEST_H
#define FILTERIMPORTERPATHCACHETEST_H
#include <QObject>
class FilterImporterPathCacheTest : public QObject
{
Q_OBJECT
public:
explicit FilterImporterPathCacheTest(QObject *parent = nullptr);
~FilterImporterPathCacheTest();
signals:
public slots:
};
#endif // FILTERIMPORTERPATHCACHETEST_H
Loading…
Cancel
Save