BetterCms.Tests.Core.ServiceTests.StorageTests.FileSystemStorageServiceTest.Should_Check_That_File_Not_Exists C# (CSharp) Method

Should_Check_That_File_Not_Exists() private method

private Should_Check_That_File_Not_Exists ( ) : void
return void
        public void Should_Check_That_File_Not_Exists()
        {
            var storageService = new FileSystemStorageService();
            string filePath = Path.Combine(@"C:\", "temp", Guid.NewGuid().ToString().Replace("-", string.Empty) + ".test");
            var fileUri = new Uri(filePath);
            storageService.ObjectExists(fileUri);
        }