FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
SharpGenTools/SharpGen.UnitTests/FileSystemTestBase.cs at main · SharpGenTools/SharpGenTools · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
SharpGenTools
/
SharpGenTools
Public
Notifications
You must be signed in to change notification settings
Fork
60
Star
536
Code
Issues
44
Pull requests
1
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
SharpGenTools
/
SharpGen.UnitTests
/
FileSystemTestBase.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (32 loc) · 946 Bytes
Breadcrumbs
SharpGenTools
/
SharpGen.UnitTests
/
FileSystemTestBase.cs
Copy path
File metadata and controls
38 lines (32 loc) · 946 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
)
;
}
}
Back
|
FazBrowse Home
|
New Git URL