diff --git a/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_annotator_output.py b/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_annotator_output.py index aea0066a..9878f3db 100644 --- a/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_annotator_output.py +++ b/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_annotator_output.py @@ -25,7 +25,7 @@ def test_annotator_output(annotation_list=None): assert len(annotation.id) > 0 if annotation.type is not None: assert len(annotation.type) > 0 - assert annotation.begin > 0 + assert annotation.begin >= 0 assert annotation.end > annotation.begin assert annotation.covered_text is not None if annotation.uid is not None: diff --git a/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_concept_annotation.py b/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_concept_annotation.py index 74671965..34f2a98a 100644 --- a/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_concept_annotation.py +++ b/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_concept_annotation.py @@ -26,7 +26,7 @@ def test_concept_annotation(annotation_list=None): assert len(annotation.id) > 0 if annotation.type is not None: assert len(annotation.type) > 0 - assert annotation.begin > 0 + assert annotation.begin >= 0 assert annotation.end > annotation.begin assert annotation.covered_text is not None if annotation.semantic_type is not None: diff --git a/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_nlu_entities.py b/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_nlu_entities.py index 8d1831cf..c9e2ccb7 100644 --- a/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_nlu_entities.py +++ b/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_nlu_entities.py @@ -22,7 +22,7 @@ def test_nlu_entities(annotation_list=None): for annotation in annotation_list: assert annotation.type is not None assert annotation.source is not None - assert annotation.begin > 0 + assert annotation.begin >= 0 assert annotation.end > annotation.begin assert annotation.relevance > 0 if annotation.uid is not None: diff --git a/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_section.py b/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_section.py index 6e47395a..434cb481 100644 --- a/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_section.py +++ b/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_section.py @@ -23,13 +23,13 @@ def test_section_annotation(annotation_list=None): assert annotation.type is not None if annotation.section_type is not None: assert len(annotation.section_type) > 0 - assert annotation.begin > 0 + assert annotation.begin >= 0 assert annotation.end > annotation.begin if annotation.covered_text is not None: assert len(annotation.covered_text) > 0 if annotation.trigger is not None: section_trigger = annotation.trigger - assert section_trigger.begin > 0 + assert section_trigger.begin >= 0 assert section_trigger.end > section_trigger.begin assert section_trigger.covered_text is not None assert section_trigger.source is not None diff --git a/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_spell_correction.py b/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_spell_correction.py index 7b6255ae..06a3fc85 100644 --- a/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_spell_correction.py +++ b/ibm_whcs_sdk/annotator_for_clinical_data/tests/common/test_spell_correction.py @@ -22,7 +22,7 @@ class TestSpellCorrectionAnnotation(object): def test_spelling_correction(annotation_list=None): if annotation_list is not None: for annotation in annotation_list: - assert annotation.begin > 0 + assert annotation.begin >= 0 assert annotation.end > annotation.begin assert annotation.covered_text is not None for suggestion in annotation.suggestions: diff --git a/ibm_whcs_sdk/annotator_for_clinical_data/tests/unit/test_annotator_for_clinical_data_v1.py b/ibm_whcs_sdk/annotator_for_clinical_data/tests/unit/test_annotator_for_clinical_data_v1.py index 4e19ff4b..5481bb68 100644 --- a/ibm_whcs_sdk/annotator_for_clinical_data/tests/unit/test_annotator_for_clinical_data_v1.py +++ b/ibm_whcs_sdk/annotator_for_clinical_data/tests/unit/test_annotator_for_clinical_data_v1.py @@ -13,6 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. +from ibm_whcs_sdk.annotator_for_clinical_data.tests.common import test_section from ibm_cloud_sdk_core.authenticators.no_auth_authenticator import NoAuthAuthenticator import inspect import io @@ -2478,6 +2479,15 @@ def test_unstructured_container_serialization(self): unstructured_container_model_json2 = unstructured_container_model.to_dict() # assert unstructured_container_model_json2 == unstructured_container_model_json +#----------------------------------------------------------------------------- +# Test Class for Section +#----------------------------------------------------------------------------- +class TestSection(): + def test_section_validation(self): + # Construct a basic Annotation and make sure it passes sanity test + annotation_model = Section(begin=0, end=1, type='testType') + test_section.TestSectionAnnotation.test_section_annotation(annotation_list=[annotation_model]) + #----------------------------------------------------------------------------- # Test Class for ServiceError #-----------------------------------------------------------------------------