Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change the layout #202

Merged
merged 2 commits into from
Nov 13, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 18 additions & 7 deletions docs/DeveloperGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -593,11 +593,13 @@ Priorities: High (must have) - `* * *`, Medium (nice to have) - `* *`, Low (unli

**Extensions**
* 1a. There is some error in the entered data.

* 1a1. ModuLight shows an error message. <br>

Use case ends.

* 2a. There are already some existing graded components.

* 2a1. ModuLight creates student scores correspond to the new student for every graded component.

Use case ends.
Expand All @@ -624,12 +626,16 @@ Priorities: High (must have) - `* * *`, Medium (nice to have) - `* *`, Low (unli
* 3a1. ModuLight shows an error message.

Use case resumes at step 2.

* 3b. The given parameter is of invalid format
* 3b1. ModuLight shows an error message.

* 3b1. ModuLight shows an error message.

Use case resumes at step 2.

* 3c. The edited student number already exists.
* 3c1. ModuLight shows an error message.

* 3c1. ModuLight shows an error message.

Use case resumes at step 2.

Expand Down Expand Up @@ -660,6 +666,7 @@ Priorities: High (must have) - `* * *`, Medium (nice to have) - `* *`, Low (unli
* 3b. The selected student has some associated student scores.
* 3b1. ModuLight deletes all associated students scores.
* 3b2. ModuLight shows a list of updated student scores.<br>

Use case resumes at step 4.


Expand All @@ -676,11 +683,13 @@ Priorities: High (must have) - `* * *`, Medium (nice to have) - `* *`, Low (unli
**Extensions**

* 1a. There is some error in the entered data.

* 1a1. ModuLight shows an error message.

Use case ends.

* 2a. There are already some existing students.

* 2a1. ModuLight creates student scores correspond to the new graded component for every student.

Use case ends.
Expand Down Expand Up @@ -769,8 +778,10 @@ Priorities: High (must have) - `* * *`, Medium (nice to have) - `* *`, Low (unli
* 1a1. ModuLight shows an error message.

Use case ends.

* 1b. There are no keywords given
* 1b1. ModuLight shows all students, scores and graded components.

Use case ends.

**Use case: Sort student(s)**
Expand Down Expand Up @@ -929,16 +940,16 @@ testers are expected to do more *exploratory* testing.

1. Prerequisite: student list is not empty.

2. Test case: `findStu g/T00`
Expected: All students from tutorial group `T00` will be displayed. All graded components and all scores related to the displayed students should be displayed.
1. Test case: `findStu g/T00`
Expected: All students from tutorial group `T00` will be displayed. All graded components and all scores related to the displayed students should be displayed.

3. Test case: `findStu`
2. Test case: `findStu`
Expected: Since there is no search words given, all students, student scores and graded components will be displayed.

4. Test case: `findStu n/John n/Amy`
3. Test case: `findStu n/John n/Amy`
Expected: All students whose name contains `John` or `Amy` (case-insensitive) will be displayed. All graded components and all scores related to the displayed students should be displayed.

5. Test case: `findStu n/John g/T00`
4. Test case: `findStu n/John g/T00`
Expected: All students whose name contains `John` (case-insensitive) and is from `T00` will be displayed. All graded components and all scores related to the displayed students should be displayed.


Expand Down
Loading