forked from Ketryx/Ketryx-Training
-
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.
- Loading branch information
Showing
1 changed file
with
14 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
/** | ||
* Gets the patient name | ||
* | ||
* @itemId:pat-get-name | ||
* When either of the following conditions is met, the system shall issue a warning notification to the user through an appropriate user interface: | ||
* a) The recommended insulin dose exceeds the predefined upper or lower limits. | ||
* b) The latest entered glucose reading is outdated according to the defined maximum allowable time interval. | ||
* @itemId:dose-reading-warning | ||
* @itemFulfills:req-patient-app-ui | ||
* @itemTitle:"Get patient name" | ||
* @itemTitle:"Insulin Dose and Glucose Reading Warning" | ||
* | ||
*/ | ||
function getPatientName() { | ||
return 'John Doe'; | ||
} | ||
|
||
/** | ||
* Gets the patient address | ||
* | ||
* @itemId:pat-get-address | ||
* @itemFulfills:req-patient-app-ui | ||
*/ | ||
function getPatientAddress() { | ||
return '123 Main St.'; | ||
} | ||
// /** | ||
// * Gets the patient address | ||
// * | ||
// * @itemId:pat-get-address | ||
// * @itemFulfills:sw-1 | ||
// */ | ||
// function getPatientAddress() { | ||
// return '123 Main St.'; | ||
// } | ||
|