// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; using System.Threading.Tasks; using Microsoft.AspNetCore.Server.Kestrel.Http; namespace Microsoft.AspNetCore.Server.KestrelTests.TestHelpers { public class MockFrameControl : IFrameControl { public void Flush() { } public Task FlushAsync(CancellationToken cancellationToken) { return Task.FromResult(0); } public void ProduceContinue() { } public void Write(ArraySegment data) { } public Task WriteAsync(ArraySegment data, CancellationToken cancellationToken) { return Task.FromResult(0); } } }