Lines Matching refs:format
35 self.errormsg = '{}\n{}'.format(self.errormsg, errormsg)
45 self.failmsg = '{}\n{}'.format(self.failmsg, failmsg)
92 ftap += '1..{}\n'.format(self.count_tests())
97 ftap += 'ok {} {} - {}'.format(str(index), t.test_id, t.test_name)
99 ftap += ' # skipped - {}\n'.format(t.errormsg)
104 ftap += '\n\t\t{}'.format(step)
105 ftap += '\n\t{}'.format(t.failmsg)
113 …xunit += '\t<testsuite tests=\"{}\" skips=\"{}\">\n'.format(self.count_tests(), self.count_skips())
115 xunit += '\t\t<testcase classname=\"{}\" '.format(escape(t.test_id))
116 xunit += 'name=\"{}\">\n'.format(escape(t.test_name))
122 xunit += '\t{}\n'.format(escape(step))
123 xunit += 'FAILURE: {}\n'.format(escape(t.failmsg))
126 xunit += '\t\t\t<error>\n{}\n'.format(escape(t.errormsg))