Ejemplo n.º 1
0
 def __init__(self,
              MESSAGE: str,
              TIME: str = None):
     super().__init__()
     self.TYPE = 'INFO'
     self.MESSAGE = MESSAGE
     self.TIME = TIME if TIME is not None else get_th_timestamp()
Ejemplo n.º 2
0
 def __init__(self,
              STATUS: str,
              MESSAGE: str,
              TIME: str = None):
     super().__init__()
     self.STATUS = STATUS
     self.MESSAGE = MESSAGE
     self.TIME = TIME if TIME is not None else get_th_timestamp()
Ejemplo n.º 3
0
 def __init__(self,
              ERROR: str,
              MESSAGE: str,
              TIME: str = None):
     super().__init__()
     self.ERROR = ERROR
     self.MESSAGE = MESSAGE
     self.TIME = TIME if TIME is not None else get_th_timestamp()
Ejemplo n.º 4
0
 def transform(event_tag: EventTag, data: str):
     return {
         'event_tag':
         event_tag,
         'data':
         json.dumps({
             'TIME': get_th_timestamp(),
             'ERROR': event_tag.th_status_tag,
             'MESSAGE': data
         })
     }
Ejemplo n.º 5
0
 def __init__(self,
              RESULT: TestAdapterState,
              TIME: str = None):
     super().__init__()
     self.RESULT = RESULT
     self.TIME = TIME if TIME is not None else get_th_timestamp()
Ejemplo n.º 6
0
 def __init__(self,
              ARGUMENTS: LLP1Input,
              TIME: str = None):
     super().__init__()
     self.ARGUMENTS = ARGUMENTS
     self.TIME = TIME if TIME is not None else get_th_timestamp()
Ejemplo n.º 7
0
 def __init__(self,
              ARGUMENTS: TestAdapterState,
              TIME: str = None):
     super().__init__()
     self.ARGUMENTS = ARGUMENTS
     self.TIME = TIME if TIME is not None else get_th_timestamp()
Ejemplo n.º 8
0
 def __init__(self,
              TIME: str = None):
     super().__init__()
     self.TIME = TIME if TIME is not None else get_th_timestamp()