Skip to content

Commit

Permalink
React to HttpAbstractions changes
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfowl committed Dec 31, 2015
1 parent d07a072 commit e4e4003
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/Microsoft.AspNet.Hosting.Tests/WebApplicationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -558,11 +558,21 @@ public void Dispose()
{
}

public TFeature Get<TFeature>()
{
return default(TFeature);
}

public IEnumerator<KeyValuePair<Type, object>> GetEnumerator()
{
yield break;
}

public void Set<TFeature>(TFeature instance)
{
throw new NotSupportedException();
}

IEnumerator IEnumerable.GetEnumerator()
{
yield break;
Expand Down

0 comments on commit e4e4003

Please sign in to comment.