diff PerfsDb/Tests/Statistics.py @ 158:df1f9946571c

perfs db continued: tests working with tiny DBs on all setup but the sqliteplugin
author am@osimis.io
date Fri, 17 Aug 2018 11:58:26 +0200
parents
children 7d39adee9f88
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/PerfsDb/Tests/Statistics.py	Fri Aug 17 11:58:26 2018 +0200
@@ -0,0 +1,15 @@
+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))
\ No newline at end of file