Ulrich Carmesin
2 years ago
12 changed files with 143 additions and 92 deletions
@ -0,0 +1,10 @@ |
|||||
|
# |
||||
|
# ------------------------------------------------- |
||||
|
""" |
||||
|
reporting-applications |
||||
|
""" |
||||
|
|
||||
|
|
||||
|
class Report(): |
||||
|
|
||||
|
pass |
@ -1,30 +0,0 @@ |
|||||
# |
|
||||
# ------------------------------------ |
|
||||
""" |
|
||||
a lot of test-results are created dynamically - so these dont belog to the testdata. |
|
||||
In order to get an overview over the testcases these results should be imported into a database. |
|
||||
""" |
|
||||
from datetime import datetime |
|
||||
import basic.message |
|
||||
import basic.program |
|
||||
import inspect |
|
||||
import components.component |
|
||||
|
|
||||
|
|
||||
class Catalog(): |
|
||||
|
|
||||
def init_Catalog(self): |
|
||||
""" |
|
||||
initialize special tables in the catalog-database |
|
||||
:return: |
|
||||
""" |
|
||||
pass |
|
||||
|
|
||||
def check_Instance(self): |
|
||||
""" |
|
||||
checks system-instances and writes it into the parameter-file |
|
||||
""" |
|
||||
job = basic.program.Job.getInstance() |
|
||||
verify = -1 + job.getDebugLevel(self.name) |
|
||||
self.m.logInfo("--- " + str(inspect.currentframe().f_code.co_name) + "() started at " + datetime.now().strftime( |
|
||||
"%Y%m%d_%H%M%S") + " for " + str(self.name).upper()) |
|
@ -1,18 +0,0 @@ |
|||||
# |
|
||||
# -------------------------------- |
|
||||
""" |
|
||||
outside the testrun there are some tasks in order maintain the tests, for example: |
|
||||
# testrunner to control or execute the testrun |
|
||||
# set the target-results |
|
||||
# generate testcases |
|
||||
# partial cleaning of the storage |
|
||||
""" |
|
||||
from datetime import datetime |
|
||||
import basic.message |
|
||||
import basic.program |
|
||||
import inspect |
|
||||
import components.component |
|
||||
|
|
||||
|
|
||||
class Maintainer(): |
|
||||
pass |
|
@ -1,15 +0,0 @@ |
|||||
# |
|
||||
# ------------------------------------------------- |
|
||||
""" |
|
||||
reporting-applications |
|
||||
""" |
|
||||
from datetime import datetime |
|
||||
import basic.message |
|
||||
import basic.program |
|
||||
import inspect |
|
||||
import components.component |
|
||||
|
|
||||
|
|
||||
class Report(): |
|
||||
|
|
||||
pass |
|
Loading…
Reference in new issue