diff --git a/test/Microsoft.AspNet.Hosting.Tests/WebApplicationTests.cs b/test/Microsoft.AspNet.Hosting.Tests/WebApplicationTests.cs index 74621076fe..9278d7ad17 100644 --- a/test/Microsoft.AspNet.Hosting.Tests/WebApplicationTests.cs +++ b/test/Microsoft.AspNet.Hosting.Tests/WebApplicationTests.cs @@ -558,11 +558,21 @@ namespace Microsoft.AspNet.Hosting { } + public TFeature Get() + { + return default(TFeature); + } + public IEnumerator> GetEnumerator() { yield break; } + public void Set(TFeature instance) + { + throw new NotSupportedException(); + } + IEnumerator IEnumerable.GetEnumerator() { yield break;