25 lines
790 B
C#
25 lines
790 B
C#
using System.Collections.Generic;
|
|
using Config.Entities;
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface ITestMethodWith2ndPass : ITestMethod
|
|
{
|
|
/// <summary>
|
|
/// Data stored for a second pass or deferred evaluation
|
|
/// </summary>
|
|
object IntermediateData { get; }
|
|
|
|
|
|
/// <summary>
|
|
/// Execute the 2nd pass of the test method
|
|
/// </summary>
|
|
/// <param name="test"></param>
|
|
/// <param name="outerLoopMode">false = normal eecution, true = Run the test only once and use 'outerLoopCounter'</param>
|
|
/// <param name="outerLoopCounter">External test repeats counter</param>
|
|
/// <returns>Event(s) indicating the result of execution</returns>
|
|
IList<Event> Execute2ndPass(Test test, int repetNr, object IntermediateData);
|
|
}
|
|
}
|