コード例 #1
0
        public void NotReturnValuesIfNullArgs()
        {
            var source = new CommandLineSource(null);

            source.TryGet(out _).Should().BeFalse();
        }
コード例 #2
0
        public void NotReturnValuesIfEmptyArgs()
        {
            var source = new CommandLineSource(Array.Empty <string>());

            source.TryGet(out _).Should().BeFalse();
        }