ApplicationSettingsTests.CreationTests.When_using_filename_and_option.And_Option_is_None_and_file_does_not_exist_FileExists_returns_false C# (CSharp) Метод

And_Option_is_None_and_file_does_not_exist_FileExists_returns_false() приватный Метод

private And_Option_is_None_and_file_does_not_exist_FileExists_returns_false ( ) : void
Результат void
        public void And_Option_is_None_and_file_does_not_exist_FileExists_returns_false()
        {
            var settings = new AppSettings("NonExistingFile.config", FileOption.None);

            Assert.IsFalse(settings.FileExists);
        }