Lines Matching full:steps
132 """Generate a list of debugger steps from a test case."""
137 steps = debugger_controller.step_collection
138 return steps
169 def _record_steps(self, test_name, steps):
170 """Write out the set of steps out to the test's .txt and .json
176 self.context.o.auto(str(steps), stream=Stream(fp))
180 pickle.dump(steps, fp, protocol=pickle.HIGHEST_PROTOCOL)
205 def _record_successful_test(self, test_name, steps, heuristic):
212 self.context.o.auto("\n{}\n".format(steps))
228 steps = self._get_steps()
229 self._record_steps(test_name, steps)
230 heuristic_score = Heuristic(self.context, steps)
236 self._record_successful_test(test_name, steps, heuristic_score)