16 lines
463 B
C#
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);
|
|
}
|
|
}
|