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 Execute(Entities.Test test); } }