예제 #1
0
        public void ConfigurationShouldReturnConfigurationLoadedFromAppSettingsJsonFile()
        {
            var testFile = new TestFile("config/appsettings.json", "{\"key\":\"value\"}");

            testFile.Mock(() =>
            {
                var configuration = ConfigurationHelper.Configuration();

                Assert.Equal("value", configuration["key"]);
            });
        }