forked from nus-cs2103-AY2425S1/tp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor tests to accomodate module storage
- Loading branch information
1 parent
f78db0f
commit 93dfaff
Showing
15 changed files
with
140 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,15 +7,26 @@ | |
"email" : "[email protected]", | ||
"address" : "123, Jurong West Ave 6, #08-111", | ||
"course": "Math", | ||
"tag" : "Student" | ||
"tag" : "Student", | ||
"modules" : [ { | ||
"module" : "MA1100", | ||
"grade" : "A" | ||
}, { | ||
"module" : "MA2202", | ||
"grade" : null | ||
} ] | ||
}, { | ||
"studentId": "19191919", | ||
"name" : "Benson Meier", | ||
"phone" : "98765432", | ||
"email" : "[email protected]", | ||
"address" : "311, Clementi Ave 2, #02-25", | ||
"course": "Medicine", | ||
"tag" : "Student" | ||
"tag" : "Student", | ||
"modules" : [ { | ||
"module" : "GEC1044", | ||
"grade" : null | ||
} ] | ||
}, { | ||
"studentId": "21212121", | ||
"name" : "Carl Kurz", | ||
|
@@ -31,15 +42,29 @@ | |
"email" : "[email protected]", | ||
"address" : "10th street", | ||
"course": "Dentistry", | ||
"tag" : "Student" | ||
"tag" : "Student", | ||
"modules" : [ { | ||
"module" : "DI5100", | ||
"grade" : null | ||
}, { | ||
"module" : "DI5200", | ||
"grade" : null | ||
} ] | ||
}, { | ||
"studentId": "25252525", | ||
"name" : "Elle Meyer", | ||
"phone" : "9482224", | ||
"email" : "[email protected]", | ||
"address" : "michegan ave", | ||
"course": "biomedical engineering", | ||
"tag" : "Student" | ||
"tag" : "Student", | ||
"modules" : [ { | ||
"module" : "BN1111", | ||
"grade" : "D" | ||
}, { | ||
"module" : "BN2102", | ||
"grade" : "C+" | ||
} ] | ||
}, { | ||
"studentId": "98989898", | ||
"name" : "Fiona Kunz", | ||
|
@@ -55,6 +80,13 @@ | |
"email" : "[email protected]", | ||
"address" : "4th street", | ||
"course": "Dentistry", | ||
"tag" : "Student" | ||
"tag" : "Student", | ||
"modules" : [ { | ||
"module" : "DI5100", | ||
"grade" : null | ||
}, { | ||
"module" : "DI5200", | ||
"grade" : null | ||
} ] | ||
} ] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.