xamarin-macios/tests/xharness/Jenkins/Reports/IReportWriter.cs

14 строки
351 B
C#

using System.Collections.Generic;
using System.IO;
using Xharness.Jenkins.TestTasks;
namespace Xharness.Jenkins.Reports {
/// <summary>
/// To be implemented by those classes that write reports regarding the results of the executed tasks.
/// </summary>
interface IReportWriter {
void Write (IList<ITestTask> tasks, StreamWriter writer);
}
}