forked from SharpGenTools/SharpGenTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileSystemTestBase.cs
More file actions
38 lines (32 loc) · 946 Bytes
/
Copy pathFileSystemTestBase.cs
File metadata and controls
38 lines (32 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.IO;
using SharpGen.Config;
using Xunit.Abstractions;
namespace SharpGen.UnitTests;
public abstract class FileSystemTestBase : TestBase, IDisposable
{
protected DirectoryInfo TestDirectory { get; }
protected FileSystemTestBase(ITestOutputHelper outputHelper)
: base(outputHelper)
{
TestDirectory = GenerateTestDirectory();
}
public IncludeDirRule GetTestFileIncludeRule()
{
return new IncludeDirRule
{
Path = $@"{TestDirectory.FullName}\includes"
};
}
private static DirectoryInfo GenerateTestDirectory()
{
var tempFolder = Path.GetTempPath();
var testFolderName = Path.GetRandomFileName();
var testDirectoryInfo = Directory.CreateDirectory(Path.Combine(tempFolder, testFolderName));
return testDirectoryInfo;
}
public void Dispose()
{
TestDirectory.Delete(true);
}
}