File: Pools\TestResources\ITestClass.cs | Web Access |
Project: src\test\Shared\Shared.Tests.csproj (Shared.Tests) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.Shared.Pools.Test.TestResources; public interface ITestClass { int ResetCalled { get; } string ReadMessage(); } |