tbf/TestBenchFramework/BenchControl/ISequence.cs

11 lines
170 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
namespace TBF.BenchControl
{
public interface ISequence
{
IList<Event> Execute(Entities.Test test);
}
}