ApplicationSettingsTests.CreationTests.When_creating_for_calling_assembly.Then_file_name_should_point_to_calling_assembly C# (CSharp) Méthode

Then_file_name_should_point_to_calling_assembly() private méthode

private Then_file_name_should_point_to_calling_assembly ( ) : void
Résultat 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