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()
|
|
{
|
|
AppShutdown = new ShutdownNotImplemented();
|
|
Log = new TestKestrelTrace();
|
|
DateHeaderValueManager = new TestDateHeaderValueManager();
|
|
}
|
|
}
|
|
}
|