FangShaoHua94 / pe

0 stars 0 forks source link

autoSuggestion does not provide wrong suggestion #3

Open FangShaoHua94 opened 4 years ago

FangShaoHua94 commented 4 years ago

input "de"

none of the suggestions contains string that has "de"

nus-pe-bot commented 4 years ago

Team's Response

The autoSuggestion is implemented in such a way that suggestions provided are displayed in an alphabetical order. Keying in the string "de" correctly provides a list of matching suggestions arranged in their alphabetical order as intended.

Items for the Tester to Verify

:question: Issue response

Team chose [response.Rejected]

Reason for disagreement: "The autoSuggestion is implemented in such a way that suggestions provided are displayed in an alphabetical order".

Firstly, i have look through DG and UG, there is no information that the suggestions will be sorted based any order.

Secondly, even if it is displayed in an alphabetical order, there's no mentioning that the auto-suggestion keyword is based on partial match. eg. "de" will search all command keywords that have "de" in it, such as "addRemain'de'r", "addStu'de'nt".

Thirdly, the intent of input "de" is meant to fast search for "delete" command, eg "deleteStudent","deleteTutorial" etc, commands that starts with "de". However, with partial match and alphabetical sort, the intended command does not appear in the suggestion, this will require user to input longer keyword to match user's intended command, which may defeat the purpose of auto-suggestion to fasten user input.


:question: Issue severity

Team chose [severity.VeryLow] Originally [severity.Medium]

Reason for disagreement: Since this application has very long and complicated command input, the auto-suggestion feature will be heavily used to input command correctly. It can be worsen when the user took so long to type the valid command, and there is a typo in the data input, the user has to type another long input to correct the mistake.