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)
547 standardMsg = '%s != %s within %s delta' % (safe_repr(first),
557 standardMsg = '%s != %s within %r places' % (safe_repr(first),
560 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)
680 def _formatMessage(self, msg, standardMsg): argument
691 return msg or standardMsg
693 return standardMsg
697 return '%s : %s' % (standardMsg, msg)
699 return '%s : %s' % (safe_repr(standardMsg), safe_repr(msg))
812 standardMsg = '%s != %s' % _common_shorten_repr(first, second)
813 msg = self._formatMessage(msg, standardMsg)
855 standardMsg = '%s != %s within %s delta' % (safe_repr(first),
[all …]
/external/python/cpython3/Lib/test/
Dtest_statistics.py231 standardMsg = (
235 msg = self._formatMessage(msg, standardMsg)
245 standardMsg = self._make_std_err_msg(first, second, tol, rel, idx)
246 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()