15 lines
384 B
C#
15 lines
384 B
C#
using Microsoft.AspNet.Server.Kestrel;
|
|
|
|
namespace Microsoft.AspNet.Server.KestrelTests
|
|
{
|
|
public class TestServiceContext : ServiceContext
|
|
{
|
|
public TestServiceContext()
|
|
{
|
|
AppLifetime = new LifetimeNotImplemented();
|
|
Log = new TestKestrelTrace();
|
|
DateHeaderValueManager = new TestDateHeaderValueManager();
|
|
}
|
|
}
|
|
}
|