File: TestResources\OtherTestClass.cs
Web Access
Project: src\test\Libraries\Microsoft.Extensions.ObjectPool.DependencyInjection.Tests\Microsoft.Extensions.ObjectPool.DependencyInjection.Tests.csproj (Microsoft.Extensions.ObjectPool.DependencyInjection.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;
 
namespace Microsoft.Extensions.ObjectPool.Test.TestResources;
 
public class OtherTestClass : ITestClass
{
    int ITestClass.ResetCalled => throw new NotSupportedException();
 
    int ITestClass.DisposedCalled => throw new NotSupportedException();
 
    string ITestClass.ReadMessage()
    {
        throw new NotSupportedException();
    }
}