5 references to _actions
Microsoft.NET.TestFramework (5)
Mock\FileSystemMockBuilder.cs (5)
27
_actions
.Add(() => _mockFileSystemModel?.CreateDirectory(Path.GetDirectoryName(name) ?? string.Empty));
28
_actions
.Add(() => _mockFileSystemModel?.CreateFile(name, content));
34
_actions
.Add(() => _mockFileSystemModel?.CreateDirectory(basePath));
38
_actions
.Add(() => _mockFileSystemModel?.CreateFile(Path.Combine(basePath, file), ""));
60
foreach (Action action in
_actions
)