// 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.Core.Internal.Http; namespace Microsoft.AspNetCore.Server.Kestrel.Core.Tests.TestHelpers { public class MockFrameControl : IFrameControl { public Task FlushAsync(CancellationToken cancellationToken) { return Task.CompletedTask; } public void ProduceContinue() { } public Task WriteAsync(ArraySegment data, CancellationToken cancellationToken) { return Task.CompletedTask; } } }