예제 #1
0
파일: xml_tparser.py 프로젝트: 00mjk/Babel
 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
파일: gts_tparser.py 프로젝트: 00mjk/Babel
 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")