File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1212from models .fhir_practitioner import PractitionerValidator
1313
1414
15- class TestImmsValidator (unittest .TestCase ):
15+ class TestValidators (unittest .TestCase ):
1616 """Basic tests for the validators. In depth tests TBA"""
1717
1818 def setUp (self ) -> None :
@@ -32,14 +32,14 @@ def setUp(self) -> None:
3232 def test_immunization_validator (self ):
3333 """Test the ImmunizationValidator""" ""
3434 immunization_validator = ImmunizationValidator (self .immunization_json_data )
35- immunization_validator .validate ()
35+ self . assertTrue ( immunization_validator .validate () )
3636
3737 def test_patient_validator (self ):
3838 """Test the PatientValidator"""
3939 patient_validator = PatientValidator (self .patient_json_data )
40- patient_validator .validate ()
40+ self . assertTrue ( patient_validator .validate () )
4141
4242 def test_practitioner_validator (self ):
4343 """Test the PractitionerValidator"""
4444 practitioner_validator = PractitionerValidator (self .practitioner_json_data )
45- practitioner_validator .validate ()
45+ self . assertTrue ( practitioner_validator .validate () )
You can’t perform that action at this time.
0 commit comments