tbf/TBF/BenchControl/GenericDevices/ISimultTestMethod.cs

23 lines
601 B
C#

///
/// Copyright (c) 2015 Sensus Metering Systems
///
using System;
namespace TBF.BenchControl.GenericDevices
{
public interface ISimultTestMethod : ITestMethod
{
/// <summary>
/// True = execute this test method (communication with the water meter, etc.) simultaneously
/// with the previous step or with purging
/// </summary>
bool SimultWithPrevious { get; }
/// <summary>
/// True = execute this test method (communication with the water meter, etc.) simultaneously
/// with the next step or with emptying
/// </summary>
bool SimultWithNext { get; }
}
}