File indexing completed on 2025-03-09 05:11:40

0001 /*
0002 SPDX-FileCopyrightText: 2021 Hamed Masafi <hamed.masfi@gmail.com>
0003 
0004 SPDX-License-Identifier: GPL-3.0-or-later
0005 */
0006 
0007 #include <QString>
0008 
0009 #pragma once
0010 
0011 namespace Git
0012 {
0013 class Manager;
0014 };
0015 
0016 namespace TestCommon
0017 {
0018 void initSignature(Git::Manager *manager);
0019 
0020 QString touch(const QString &fileName);
0021 QString readFile(const QString &fileName);
0022 QString getTempPath();
0023 bool cleanPath(Git::Manager *manager);
0024 
0025 QString touch(Git::Manager *manager, const QString &fileName);
0026 bool makePath(Git::Manager *manager, const QString &path);
0027 }