Files
tbf/TestBenchFramework/BenchControl/ISequence.cs
T

11 lines
170 B
C#

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