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