mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-07-03 03:46:58 +03:00
NOISSUE dissolve util library
This commit is contained in:
parent
7459eb627c
commit
f93f867c3d
80 changed files with 770 additions and 869 deletions
|
|
@ -1,7 +1,6 @@
|
|||
#include <QTest>
|
||||
#include "TestUtil.h"
|
||||
|
||||
#include "pathutils.h"
|
||||
#include <FileSystem.h>
|
||||
|
||||
class PathUtilsTest : public QObject
|
||||
{
|
||||
|
|
@ -37,7 +36,7 @@ slots:
|
|||
QFETCH(QString, path1);
|
||||
QFETCH(QString, path2);
|
||||
|
||||
QCOMPARE(PathCombine(path1, path2), result);
|
||||
QCOMPARE(FS::PathCombine(path1, path2), result);
|
||||
}
|
||||
|
||||
void test_PathCombine2_data()
|
||||
|
|
@ -65,7 +64,7 @@ slots:
|
|||
QFETCH(QString, path2);
|
||||
QFETCH(QString, path3);
|
||||
|
||||
QCOMPARE(PathCombine(path1, path2, path3), result);
|
||||
QCOMPARE(FS::PathCombine(path1, path2, path3), result);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue