dotnet-installer/src/dotnet/commands/dotnet-test/IReportingChannelFactory.cs

17 lines
478 B
C#
Raw Normal View History

// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
namespace Microsoft.DotNet.Tools.Test
{
public interface IReportingChannelFactory
{
event EventHandler<IReportingChannel> TestRunnerChannelCreated;
IReportingChannel CreateTestRunnerChannel();
IReportingChannel CreateAdapterChannel(int port);
}
}