+
+ def load(self):
+ output = self.command("load")
+ assert "failed" not in output
+ assert "Transfer rate" in output
+
+ def b(self, location):
+ output = self.command("b %s" % location)
+ assert "not defined" not in output
+ assert "Breakpoint" in output
+ return output