/// <summary>
 /// Initializes a set of commands for a rover
 /// </summary>
 public CommandSet(CommandSetParser parser)
 {
     this.parser = parser ?? throw new ArgumentNullException(nameof(parser));
 }
 /// <summary>
 /// Initializes a set of commands for a rover
 /// </summary>
 public CommandSet()
 {
     parser = new CommandSetParser();
 }