Home
last modified time | relevance | path

Searched refs:longMessage (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Lib/unittest/test/
Dtest_assertions.py151 longMessage = False variable in TestLongMessage.setUp.TestableTestFalse
158 longMessage = True variable in TestLongMessage.setUp.TestableTestTrue
168 self.assertTrue(unittest.TestCase.longMessage)
/third_party/flutter/flutter/packages/flutter/lib/src/foundation/
Dassertions.dart311 String longMessage;
332 longMessage = '${message.trimRight()}\n$body';
336 longMessage ??= fullMessage;
338 longMessage = exception;
340 longMessage = exception.toString();
342 longMessage = ' ${exception.toString()}';
344 longMessage = longMessage.trimRight();
345 if (longMessage.isEmpty)
346 longMessage = ' <no message available>';
347 return longMessage;
/third_party/python/Lib/test/test_email/
Dtest_policy.py19 longMessage = True variable in PolicyAPITests
/third_party/python/Lib/unittest/
Dcase.py343 longMessage = True variable in TestCase
699 if not self.longMessage:
/third_party/python/Misc/NEWS.d/
D3.5.1rc1.rst893 Honour TestCase.longMessage correctly in assertRegex. Patch from Ilia
/third_party/python/Doc/library/
Dunittest.rst859 as the error message on failure (see also :data:`longMessage`).
1383 .. attribute:: longMessage
1392 an instance attribute, self.longMessage, to ``True`` or ``False`` before
/third_party/python/Doc/whatsnew/
D2.7.rst1881 :attr:`~unittest.TestCase.longMessage` attribute of your :class:`~unittest.TestCase` classes to
/third_party/python/Misc/
DHISTORY11301 - Issue #7911: ``unittest.TestCase.longMessage`` defaults to True for improved