public void ConfigurationShouldReturnConfigurationLoadedFromAppSettingsJsonFile() { var testFile = new TestFile("config/appsettings.json", "{\"key\":\"value\"}"); testFile.Mock(() => { var configuration = ConfigurationHelper.Configuration(); Assert.Equal("value", configuration["key"]); }); }