public void Given_A_LocalFileFullPath_Should_Invoke_Rename_Exists_Once() { // Arrange const string localFileFullPath = @"c:\images\picture.png"; // Act _sut.Exists(localFileFullPath); // Assert _fileSystem.Exists(Arg.Is(localFileFullPath)); }