Searched refs:assertIsNot (Results 1 – 12 of 12) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_bool.py | 44 self.assertIsNot(int(False), False) 46 self.assertIsNot(int(True), True) 50 self.assertIsNot(float(False), False) 52 self.assertIsNot(float(True), True) 56 self.assertIsNot(long(False), False) 58 self.assertIsNot(long(True), True) 62 self.assertIsNot(+False, False) 64 self.assertIsNot(-False, False) 66 self.assertIsNot(abs(False), False) 68 self.assertIsNot(+True, True) [all …]
|
D | test_select.py | 27 self.assertIsNot(r, w) 28 self.assertIsNot(r, x) 29 self.assertIsNot(w, x)
|
D | test_strptime.py | 494 self.assertIsNot(original_time_re, _strptime._TimeRE_cache) 516 self.assertIsNot(locale_time_id, _strptime._TimeRE_cache.locale_time) 536 self.assertIsNot(first_time_re, second_time_re)
|
D | test_import.py | 136 self.assertIsNot(orig_getenv, new_os.getenv) 211 self.assertIsNot(mod, None, "expected module to be in sys.modules")
|
D | test_dict.py | 12 self.assertIsNot(dict(), {}) 210 self.assertIsNot(d.fromkeys('abc'), d)
|
D | seq_tests.py | 273 self.assertIsNot(u3, u3*1)
|
D | test_mailbox.py | 1840 self.assertIsNot(self.mbox.next(), None) 1848 self.assertIsNot(self.mbox.next(), None) 1857 self.assertIsNot(self.mbox.next(), None) 1858 self.assertIsNot(self.mbox.next(), None)
|
D | test_with.py | 226 self.assertIsNot(mock_manager.exit_args[2], None)
|
D | test_decimal.py | 2211 self.assertIsNot(orig_ctx, set_ctx, 'did not copy the context') 2223 self.assertIsNot(new_ctx, set_ctx, 'did not copy the context')
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/ |
D | test_result.py | 413 self.assertIsNot(real_out, sys.stdout) 414 self.assertIsNot(real_err, sys.stderr) 417 self.assertIsNot(sys.stdout, sys.stderr)
|
D | test_case.py | 440 self.assertIsNot(thing, object()) 441 self.assertRaises(self.failureException, self.assertIsNot, thing, thing)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/ |
D | case.py | 815 def assertIsNot(self, expr1, expr2, msg=None): member in TestCase
|