Blog.Common.Utils.Tests.Helpers.ConfigurationHelperTest.ShouldGetCorrectKeyInAppSettings C# (CSharp) Метод

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

private ShouldGetCorrectKeyInAppSettings ( ) : void
Результат void
        public void ShouldGetCorrectKeyInAppSettings()
        {
            var configurationHelper = new ConfigurationHelper();
            var result = configurationHelper.GetAppSettings("foo");

            Assert.AreEqual("bar", result);
        }