#ifndef STORAGE_BROWSER_TEST_FILE_SYSTEM_TEST_FILE_SET_H_
#define STORAGE_BROWSER_TEST_FILE_SYSTEM_TEST_FILE_SET_H_
#include <stddef.h>
#include <stdint.h>
#include "base/files/file_path.h"
namespace storage {
enum class TestBlockAction { … };
struct FileSystemTestCaseRecord { … };
extern const FileSystemTestCaseRecord kRegularFileSystemTestCases[];
extern const size_t kRegularFileSystemTestCaseSize;
size_t GetRegularFileSystemTestCaseSize();
void SetUpOneFileSystemTestCase(const base::FilePath& root_path,
const FileSystemTestCaseRecord& record);
void SetUpRegularFileSystemTestCases(const base::FilePath& root_path);
}
#endif