ApplicationSettingsTests.CreationTests.When_creating_for_calling_assembly.Then_file_name_should_point_to_calling_assembly C# (CSharp) Method

Then_file_name_should_point_to_calling_assembly() private method

private Then_file_name_should_point_to_calling_assembly ( ) : void
return void
        public void Then_file_name_should_point_to_calling_assembly()
        {
            var appSettings = AppSettings.CreateForCallingAssembly(FileOption.None);

            var fileName = System.IO.Path.GetFileName(appSettings.FullPath);

            Assert.AreEqual("ApplicationSettingsTests.dll.config", fileName);
        }
When_creating_for_calling_assembly