tbf/TestBenchFramework/BenchControl/GenericDevices/ITestMethod.cs

17 lines
442 B
C#

using System.Collections.Generic;
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface ITestMethod : IComponent
{
/// True = use result of the test with this method when evaluating the final result
bool Evaluate { get; }
/// True = use result of the test with this method when publishing (printing, saving) results
bool Publish { get; }
IList<Event> Execute(Entities.Test test);
}
}