File: Rendering\TestArrayPool.cs
Web Access
Project: src\src\Components\Components\test\Microsoft.AspNetCore.Components.Tests.csproj (Microsoft.AspNetCore.Components.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Buffers;
 
namespace Microsoft.AspNetCore.Components.RenderTree;
 
internal class TestArrayPool<T> : ArrayPool<T>
{
    public override T[] Rent(int minimumLength)
    {
        return new T[minimumLength];
    }
 
    public List<T[]> ReturnedBuffers = new List<T[]>();
 
    public override void Return(T[] array, bool clearArray = false)
    {
        ReturnedBuffers.Add(array);
    }
}