-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathFileSystemTests.cs
More file actions
106 lines (86 loc) · 2.81 KB
/
FileSystemTests.cs
File metadata and controls
106 lines (86 loc) · 2.81 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
using NUnit.Framework;
namespace System.IO.Abstractions.Tests
{
[TestFixture]
public class FileSystemTests
{
#if !NET9_0_OR_GREATER
[Test]
public void Is_Serializable()
{
var fileSystem = new FileSystem();
var memoryStream = new MemoryStream();
#pragma warning disable SYSLIB0011
var serializer = new Runtime.Serialization.Formatters.Binary.BinaryFormatter();
serializer.Serialize(memoryStream, fileSystem);
#pragma warning restore SYSLIB0011
Assert.That(memoryStream.Length > 0, "Length didn't increase after serialization task.");
}
#endif
[Test]
public void Mock_File_Succeeds()
{
var fileSystemMock = new Moq.Mock<IFileSystem>();
Assert.DoesNotThrow(() =>
fileSystemMock.Setup(x => x.File.ToString()).Returns("")
);
}
[Test]
public void Mock_Directory_Succeeds()
{
var fileSystemMock = new Moq.Mock<IFileSystem>();
Assert.DoesNotThrow(() =>
fileSystemMock.Setup(x => x.Directory.ToString()).Returns("")
);
}
[Test]
public void Mock_FileInfo_Succeeds()
{
var fileSystemMock = new Moq.Mock<IFileSystem>();
Assert.DoesNotThrow(() =>
fileSystemMock.Setup(x => x.FileInfo.ToString()).Returns("")
);
}
[Test]
public void Mock_FileStream_Succeeds()
{
var fileSystemMock = new Moq.Mock<IFileSystem>();
Assert.DoesNotThrow(() =>
fileSystemMock.Setup(x => x.FileStream.ToString()).Returns("")
);
}
[Test]
public void Mock_Path_Succeeds()
{
var fileSystemMock = new Moq.Mock<IFileSystem>();
Assert.DoesNotThrow(() =>
fileSystemMock.Setup(x => x.Path.ToString()).Returns("")
);
}
[Test]
public void Mock_DirectoryInfo_Succeeds()
{
var fileSystemMock = new Moq.Mock<IFileSystem>();
Assert.DoesNotThrow(() =>
fileSystemMock.Setup(x => x.DirectoryInfo.ToString()).Returns("")
);
}
[Test]
public void Mock_DriveInfo_Succeeds()
{
var fileSystemMock = new Moq.Mock<IFileSystem>();
Assert.DoesNotThrow(() =>
fileSystemMock.Setup(x => x.DirectoryInfo.ToString()).Returns("")
);
}
[Test]
public void Mock_FileSystemWatcher_Succeeds()
{
var fileSystemMock = new Moq.Mock<IFileSystem>();
Assert.DoesNotThrow(() =>
fileSystemMock.Setup(x => x.FileSystemWatcher.ToString()).Returns("")
);
}
}
}