diff --git a/test/testfolder.cpp b/test/testfolder.cpp deleted file mode 100644 index 986c588ebdb..00000000000 --- a/test/testfolder.cpp +++ /dev/null @@ -1,45 +0,0 @@ -/* - * This software is in the public domain, furnished "as is", without technical - * support, and with no warranty, express or implied, as to its usefulness for - * any purpose. - * - */ - -#include - -#include "common/utility.h" -#include "folder.h" - -using namespace OCC; - -class TestFolder: public QObject -{ - Q_OBJECT -private slots: - void testFolder() - { - QFETCH(QString, folder); - QFETCH(QString, expectedFolder); - Folder *f = new Folder("alias", folder, "http://foo.bar.net"); - QCOMPARE(f->path(), expectedFolder); - delete f; - } - - void testFolder_data() - { - QTest::addColumn("folder"); - QTest::addColumn("expectedFolder"); - - QTest::newRow("unixcase") << "/foo/bar" << "/foo/bar"; - QTest::newRow("doubleslash") << "/foo//bar" << "/foo/bar"; - QTest::newRow("tripleslash") << "/foo///bar" << "/foo/bar"; - QTest::newRow("mixedslash") << "/foo/\\bar" << "/foo/bar"; - QTest::newRow("windowsfwslash") << "C:/foo/bar" << "C:/foo/bar"; - QTest::newRow("windowsbwslash") << "C:\\foo" << "C:/foo"; - QTest::newRow("windowsbwslash2") << "C:\\foo\\bar" << "C:/foo/bar"; - } - -}; - -QTEST_APPLESS_MAIN(TestFolder) -#include "testfolder.moc"