Пример #1
0
 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);
        }