public void NotReturnValuesIfNullArgs() { var source = new CommandLineSource(null); source.TryGet(out _).Should().BeFalse(); }
public void NotReturnValuesIfEmptyArgs() { var source = new CommandLineSource(Array.Empty <string>()); source.TryGet(out _).Should().BeFalse(); }