2016-02-13 02:22:35 +00:00
|
|
|
|
// 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.
|
|
|
|
|
|
2016-03-04 01:43:42 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
2016-02-13 02:22:35 +00:00
|
|
|
|
namespace Microsoft.DotNet.Tools.Test
|
|
|
|
|
{
|
|
|
|
|
public interface IReportingChannelFactory
|
|
|
|
|
{
|
2016-03-04 01:43:42 +00:00
|
|
|
|
event EventHandler<IReportingChannel> TestRunnerChannelCreated;
|
|
|
|
|
|
|
|
|
|
IReportingChannel CreateTestRunnerChannel();
|
2016-02-13 02:22:35 +00:00
|
|
|
|
|
2016-03-04 01:43:42 +00:00
|
|
|
|
IReportingChannel CreateAdapterChannel(int port);
|
2016-02-13 02:22:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|