BetterCms.Tests.Core.ServiceTests.StorageTests.FileSystemStorageServiceTest.Should_Check_That_File_Not_Exists C# (CSharp) 메소드

Should_Check_That_File_Not_Exists() 개인적인 메소드

private Should_Check_That_File_Not_Exists ( ) : void
리턴 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);
        }