view PerfsDb/Tests/ToolsFind.py @ 450:eb46265e214f

Added tag Orthanc-1.10.0 for changeset 06eea14c5906
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 23 Feb 2022 14:11:03 +0100
parents dbc42a03ee75
children
line wrap: on
line source

from Test import Test

class TestToolsFindStudyByStudyInstanceUID(Test):

    def __init__(self, name:str = "ToolsFindStudyByStudyInstanceUID"):
        super().__init__(name)

    def test(self):
        self._orthanc.studies.find(
            studyInstanceUid="99999.99999"
        )

class TestToolsFindPatientByPatientID(Test):

    def __init__(self, name:str = "ToolsFindPatientByPatientID"):
        super().__init__(name)

    def test(self):
        self._orthanc.patients.find(
            dicomPatientId="99999"
        )