Пример #1
0
 def __init__(self, invocation, scoreboard):
     tparser_base.__init__(self, invocation, scoreboard)
     self.state = []  # a stack to keep track of state
     self.buffer = []  # buffer to accumulate character data
     self.tests = []  # a queue of xml_result instances
     self.n_promised_tests = 1
Пример #2
0
 def __init__( self, invocation, scoreboard ):
     tparser_base.__init__(self, invocation, scoreboard )
     self.results = []   # list of tests
     self.buffer = []  # array of text strings
     self.comment_buffer = [] # array of text strings
Пример #3
0
 def __init__( self, invocation, scoreboard): 
     tparser_base.__init__( self, invocation, scoreboard ) 
     self.errmsgs = invocation.errmsgs
     result_base.__init__(self, invocation.symbolic_name, scoreboard, "unknown")
Пример #4
0
 def __init__(self, invocation, scoreboard):
     tparser_base.__init__(self, invocation, scoreboard)
     self.results = []  # list of tests
     self.buffer = []  # array of text strings
     self.comment_buffer = []  # array of text strings
Пример #5
0
 def __init__( self, invocation, scoreboard ):
     tparser_base.__init__(self, invocation, scoreboard )
     self.state = []          # a stack to keep track of state
     self.buffer = []    # buffer to accumulate character data
     self.tests = []          # a queue of xml_result instances
     self.n_promised_tests = 1
Пример #6
0
    def __init__( self, invocation, scoreboard): 
        tparser_base.__init__( self, invocation, scoreboard ) 
        self.errmsgs = invocation.errmsgs
	result_base.__init__(self, invocation.symbolic_name, scoreboard, "unknown")