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

11 lines
170 B
C#

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