async Task SendReceiveConfirm(string command, string customValidation = null) { (await Proto.SendReceive(command)).Should().Be(customValidation ?? command); }
public async Task AutoModeReset() { (await Proto.SendReceive("AutoModeReset")).Should().Be(ProtocolMessages.AutoModeResetConfirmation); }
public async Task Clear() { (await Proto.SendReceive("Clear")).Should().Be(ProtocolMessages.TagListClearConfirmation); }
public async Task RfModulation() { (await Proto.SendReceive("RFModulation = DRM")).Should().Be("RFModulation = DRM"); (await Proto.SendReceive("RFModulation?")).Should().Be("RFModulation = DRM"); }