diff --git a/addons/project/autotests/test1.cpp b/addons/project/autotests/test1.cpp index 611f49150..b0a810af8 100644 --- a/addons/project/autotests/test1.cpp +++ b/addons/project/autotests/test1.cpp @@ -1,55 +1,55 @@ /* This file is part of the KDE project * * Copyright 2014 Gregor Mi * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #include "test1.h" #include "fileutil.h" #include "tools/kateprojectcodeanalysistoolshellcheck.h" #include -#include +#include QTEST_MAIN(Test1) void Test1::initTestCase() { } void Test1::cleanupTestCase() { } void Test1::testCommonParent() { QCOMPARE(FileUtil::commonParent(QLatin1String("/usr/local/bin"), QLatin1String("/usr/local/bin")), QLatin1String("/usr/local/")); QCOMPARE(FileUtil::commonParent(QLatin1String("/usr/local"), QLatin1String("/usr/local/bin")), QLatin1String("/usr/")); QCOMPARE(FileUtil::commonParent(QLatin1String("~/dev/proj1"), QLatin1String("~/dev/proj222")), QLatin1String("~/dev/")); } void Test1::testShellCheckParsing() { QString line = QStringLiteral("script.sh:3:11: note: Use ./*glob* or -- *glob* so ... options. [SC2035]"); KateProjectCodeAnalysisToolShellcheck sc(nullptr); QStringList outList = sc.parseLine(line); //qDebug() << outList; QCOMPARE(outList.size(), 4); } // kate: space-indent on; indent-width 4; replace-tabs on;