Пример #1
0
        protected override void Given()
        {
            MockControlLine  = Substitute.For <IControlLine>();
            MockErrorService = Substitute.For <IErrorService>();

            SUT = new global::HAL.Operations.AnalogOperations(MockErrorService, MockControlLine);
        }
 public AxisOperations(IErrorService errorService, IControlLine controlLine) : base(errorService, controlLine)
 {
 }
Пример #3
0
 protected HardwareOperations(IErrorService errorService, IControlLine controlLine)
 {
     ErrorService = errorService;
     ControlLine  = controlLine;
 }