Move dependencies to the top level.

This commit is contained in:
jakcron
2022-04-16 18:27:14 +08:00
parent b67980d3d2
commit 5d62e839e7
844 changed files with 74 additions and 114431 deletions
@@ -1,35 +0,0 @@
#pragma once
#include "ITestClass.h"
class io_LocalFileSystem_TestClass : public ITestClass
{
public:
void runAllTests();
private:
void test_CreateFile_NotExist();
void test_CreateFile_DoesExist();
void test_CreateFile_UnicodePath();
void test_RemoveFile_DoesExist();
void test_RemoveFile_NotExist();
void test_RemoveFile_UnicodePath();
void test_CreateDirectory_NotExist();
void test_CreateDirectory_DoesExist();
void test_CreateDirectory_UnicodePath();
void test_RemoveDirectory_DoesExist();
void test_RemoveDirectory_NotExist();
void test_RemoveDirectory_UnicodePath();
void test_RemoveDirectory_HasChildren();
void test_RemoveDirectory_NotDirectoryActuallyFile();
void test_GetDirectoryListing_DoesExist();
void test_GetDirectoryListing_NotExist();
void test_GetDirectoryListing_UnicodePath();
void test_ChangeWorkingDirectory_DoesExist();
void test_ChangeWorkingDirectory_NotExist();
void test_ChangeWorkingDirectory_UnicodePath();
static std::string kDirPath;
static std::string kUtf8DirPath;
static std::string kAsciiFilePath;
static std::string kUtf8TestPath;
static std::string kNotExistFilePath;
};