Home
last modified time | relevance | path

Searched refs:assertIsNot (Results 1 – 12 of 12) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_bool.py44 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 …]
Dtest_select.py27 self.assertIsNot(r, w)
28 self.assertIsNot(r, x)
29 self.assertIsNot(w, x)
Dtest_strptime.py494 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)
Dtest_import.py136 self.assertIsNot(orig_getenv, new_os.getenv)
211 self.assertIsNot(mod, None, "expected module to be in sys.modules")
Dtest_dict.py12 self.assertIsNot(dict(), {})
210 self.assertIsNot(d.fromkeys('abc'), d)
Dseq_tests.py273 self.assertIsNot(u3, u3*1)
Dtest_mailbox.py1840 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)
Dtest_with.py226 self.assertIsNot(mock_manager.exit_args[2], None)
Dtest_decimal.py2211 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/
Dtest_result.py413 self.assertIsNot(real_out, sys.stdout)
414 self.assertIsNot(real_err, sys.stderr)
417 self.assertIsNot(sys.stdout, sys.stderr)
Dtest_case.py440 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/
Dcase.py815 def assertIsNot(self, expr1, expr2, msg=None): member in TestCase