public void CmdList_TrueWithMultipleArgs()
        {
            CmdList _list = new CmdList();

            string[] args   = { "string1", "string2" };
            var      result = _list.Validate(args);

            Assert.True(result, "List should return true with multiple arguments");
        }
        public void CmdList_TrueWithNoArgs()
        {
            CmdList _list = new CmdList();

            string[] args   = {};
            var      result = _list.Validate(args);

            Assert.True(result, "List should return true with no arguments");
        }