-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add file for parameterization for pytest example
- Loading branch information
Showing
2 changed files
with
73 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[ | ||
{ | ||
"action": "run_hypothesis", | ||
"name": "run_hypothesis_0", | ||
"input_state": { | ||
"transcription": "Patient exhibits mucus dripping from nostrils and coughing.", | ||
"hypothesis": "Common cold" | ||
}, | ||
"expected_state": { | ||
"diagnosis": "yes" | ||
} | ||
}, | ||
{ | ||
"action": "run_hypothesis", | ||
"name": "run_hypothesis_1", | ||
"input_state": { | ||
"transcription": "Patient has a limp and is unable to flex right ankle. Ankle is swollen.", | ||
"hypothesis": "Sprained ankle" | ||
}, | ||
"expected_state": { | ||
"diagnosis": "yes" | ||
} | ||
}, | ||
{ | ||
"action": "run_hypothesis", | ||
"name": "run_hypothesis_2", | ||
"input_state": { | ||
"transcription": "Patient fell off and landed on their right arm. Their right wrist is swollen, they can still move their fingers, and there is only minor pain or discomfort when the wrist is moved or touched.", | ||
"hypothesis": "Broken arm" | ||
}, | ||
"expected_state": { | ||
"diagnosis": "no" | ||
} | ||
} | ||
] |
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