view PerfsDb/Tests/Statistics.py @ 165:1ff0d830bb87

find 100 results
author am@osimis.io
date Tue, 21 Aug 2018 15:20:45 +0200
parents df1f9946571c
children 7d39adee9f88
line wrap: on
line source

import json

from Test import Test

class TestStatistics(Test):

    def __init__(self, name:str = "Statistics"):
        super().__init__(name)
        self._response = None

    def test(self):
        self._statistics = self._orthanc.getJson(relativeUrl="statistics")

    def afterAll(self):
        print("Statistics:" + json.dumps(self._statistics))