Lines Matching refs:array

75   # Pushes the suite info as xml to the array list, which will be written later
84 # Pushes xml output data to the array list, which will be written later
89 # Pushes xml output data to the array list, which will be written later
96 # Pushes xml output data to the array list, which will be written later
125 array = line.split(',')
126 array.map { |x| x.to_s.lstrip.chomp }
131 def test_passed_unity_fixture(array)
132 class_name = array[0]
133 test_name = array[1]
142 def test_failed_unity_fixture(array)
143 class_name = array[0]
144 test_name = array[1]
146 reason_array = array[2].split(':')
156 def test_ignored_unity_fixture(array)
157 class_name = array[0]
158 test_name = array[1]
160 if array.size > 2
161 reason_array = array[2].split(':')
172 def test_passed(array)
174 real_method_name = array[@result_usual_idx - 1..-2].join(':')
175 array = array[0..@result_usual_idx - 2] + [real_method_name] + [array[-1]]
177 last_item = array.length - 1
178 test_time = get_test_time(array[last_item])
179 test_name = array[last_item - 1]
180 test_suite_verify(array[@class_name_idx])
189 def test_failed(array)
191 real_method_name = array[@result_usual_idx - 1..-3].join(':')
192 array = array[0..@result_usual_idx - 3] + [real_method_name] + array[-2..]
194 last_item = array.length - 1
195 test_time = get_test_time(array[last_item])
196 test_name = array[last_item - 2]
197 reason = "#{array[last_item].chomp.lstrip} at line: #{array[last_item - 3]}"
198 class_name = array[@class_name_idx]
217 def test_ignored(array)
219 real_method_name = array[@result_usual_idx - 1..-3].join(':')
220 array = array[0..@result_usual_idx - 3] + [real_method_name] + array[-2..]
222 last_item = array.length - 1
223 test_time = get_test_time(array[last_item])
224 test_name = array[last_item - 2]
225 reason = array[last_item].chomp.lstrip
226 class_name = array[@class_name_idx]