public ActionResult <StatusOutDto> Stop() { _bot.Stop(); return(Ok(new StatusOutDto { Status = "Bot was stopped" })); }
public void Stop_Return() { _bot.Stop(); _client.Verify(c => c.StopReceiving(), Times.Once); }