Example #1
0
 static QStringList getFilePaths() {
     QStringList filePaths;
     for (const auto& fileNameSuffix: getFileNameSuffixes()) {
         filePaths.append(kTestDir.absoluteFilePath("cover-test" + fileNameSuffix));
     }
     return filePaths;
 }
Example #2
0
 static QStringList getFilePaths() {
     const QString basePath(QDir::current().absoluteFilePath("src/test/id3-test-data"));
     const QDir baseDir(basePath);
     QStringList filePaths;
     for (const auto& fileNameSuffix: getFileNameSuffixes()) {
         filePaths.append(baseDir.absoluteFilePath("cover-test" + fileNameSuffix));
     }
     return filePaths;
 }