public void Convert_Message_Command_To_Instruction()
        {
            // Arrange
            string message  = "Hello!";
            string expected = "M:Hello!";

            MessageCommand command = new MessageCommand(message);

            // Act
            string actual = _coffeeMachine.Instruct(command, 0);

            // Assert
            Assert.Equal(expected, actual);
        }