Home
last modified time | relevance | path

Searched refs:standardMsg (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Lib/unittest/
Dcase.py424 def _formatMessage(self, msg, standardMsg): argument
435 return msg or standardMsg
437 return standardMsg
441 return '%s : %s' % (standardMsg, msg)
443 return '%s : %s' % (safe_repr(standardMsg), safe_repr(msg))
504 standardMsg = '%s != %s' % (safe_repr(first), safe_repr(second))
505 msg = self._formatMessage(msg, standardMsg)
548 standardMsg = '%s != %s within %s delta' % (safe_repr(first),
558 standardMsg = '%s != %s within %r places' % (safe_repr(first),
561 msg = self._formatMessage(msg, standardMsg)
[all …]
/external/python/cpython3/Lib/unittest/
Dcase.py133 def _raiseFailure(self, standardMsg): argument
134 msg = self.test_case._formatMessage(self.msg, standardMsg)
694 def _formatMessage(self, msg, standardMsg): argument
705 return msg or standardMsg
707 return standardMsg
711 return '%s : %s' % (standardMsg, msg)
713 return '%s : %s' % (safe_repr(standardMsg), safe_repr(msg))
830 standardMsg = '%s != %s' % _common_shorten_repr(first, second)
831 msg = self._formatMessage(msg, standardMsg)
875 standardMsg = '%s != %s within %s delta (%s difference)' % (
[all …]
/external/python/cpython3/Lib/test/
Dtest_statistics.py232 standardMsg = (
236 msg = self._formatMessage(msg, standardMsg)
246 standardMsg = self._make_std_err_msg(first, second, tol, rel, idx)
247 msg = self._formatMessage(msg, standardMsg)
/external/protobuf/javanano/src/test/java/com/google/protobuf/nano/
DNanoTest.java4474 StandardVersion standardMsg = new StandardVersion(); in testUnknownOptionalEnumValue() local
4475 standardMsg.optionalField = StandardVersion.VAL_3; in testUnknownOptionalEnumValue()
4476 byte[] standardMsgBytes = MessageNano.toByteArray(standardMsg); in testUnknownOptionalEnumValue()
4493 StandardVersion standardMsg = new StandardVersion(); in testUnknownRepeatedEnumValue() local
4494 standardMsg.repeatedField = new int[] { StandardVersion.VAL_3, StandardVersion.VAL_2 }; in testUnknownRepeatedEnumValue()
4495 byte[] standardMsgBytes = MessageNano.toByteArray(standardMsg); in testUnknownRepeatedEnumValue()
4514 StandardVersion standardMsg = new StandardVersion(); in testUnknownRepeatedPackedEnumValue() local
4515 standardMsg.packedField = new int[] { StandardVersion.VAL_3, StandardVersion.VAL_2 }; in testUnknownRepeatedPackedEnumValue()
4516 byte[] standardMsgBytes = MessageNano.toByteArray(standardMsg); in testUnknownRepeatedPackedEnumValue()