tbf/TestBenchFramework/BenchControl/GenericDevices/IResultsPrinter.cs
2014-07-28 09:56:40 +02:00

19 lines
555 B
C#

using System.Collections.Generic;
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IResultsPrinter : IComponent
{
/// <summary>
/// Prints the test cycle results, Events: Event.ResultsPrinted
/// </summary>
/// <param name="results">Results to print</param>
/// <returns>Reference to the operation</returns>
IOperation PrintResultsOp(BenchControl.BenchId.Component benchId,
IList<IWaterMeter> waterMeters,
IList<Entities.TestResult> results,
string title);
}
}