ApplicationSettingsTests.CreationTests.When_using_file_name.Then_if_filepath_is_uri_exception_is_thrown C# (CSharp) Method

Then_if_filepath_is_uri_exception_is_thrown() private method

private Then_if_filepath_is_uri_exception_is_thrown ( ) : void
return void
        public void Then_if_filepath_is_uri_exception_is_thrown()
        {
            Assert.Throws<AppSettingException>(() => { new AppSettings(@"file:////foo.txt"); });
        }