Beispiel #1
0
 internal FakeDirectoryInfo([NotNull] DirectoryEntry root, [NotNull] FakeFileSystem owner, [NotNull] AbsolutePath path)
     : base(root, owner, path)
 {
 }
 protected OperationLocker([NotNull] FakeFileSystem owner)
 {
     this.owner = owner;
     Guard.NotNull(owner, nameof(owner));
 }
Beispiel #3
0
 internal FakeDirectoryInfo([NotNull] VolumeContainer container, [NotNull] FakeFileSystem owner,
                            [NotNull] AbsolutePath path, [CanBeNull] string displayPath)
     : base(container, owner, path, displayPath)
 {
 }
Beispiel #4
0
 public FileOperationLocker([NotNull] FakeFileSystem owner, [NotNull] TFile target)
     : base(owner)
 {
     Guard.NotNull(target, nameof(target));
     this.target = target;
 }