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

16 lines
463 B
C#

using System.Collections.Generic;
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IResultsWriter : IComponent
{
/// <summary>
/// Writes the test cycle results into a file, Events: Event.ResultsWritten
/// </summary>
/// <param name="results">Results to write into a file</param>
/// <returns>Reference to the operation</returns>
IOperation WriteResultsOp(IList<Entities.TestResult> results);
}
}