ApplicationSettingsTests.CreationTests.When_using_filename_and_option.And_Option_is_None_and_file_does_not_exist_FileExists_returns_false C# (CSharp) Method

And_Option_is_None_and_file_does_not_exist_FileExists_returns_false() private method

        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);
        }