public void CmdLocalList_FalseWithInvalidFilename() { CmdLocalList _list = new CmdLocalList(); string[] args = { "this should never be a valid filename" }; var result = _list.Validate(args); Assert.True(result, "Local list should return false with invalid filename"); }
public void CmdLocalList_FalseWithNoArgs() { CmdLocalList _list = new CmdLocalList(); string[] args = {}; var result = _list.Validate(args); Assert.False(result, "Local list should return false with no arguments"); }