Home
last modified time | relevance | path

Searched refs:assertNotIsInstance (Results 1 – 11 of 11) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_collections.py249 self.assertNotIsInstance(C(), abc)
253 self.assertNotIsInstance(C(), abc)
293 self.assertNotIsInstance(x, Hashable)
320 self.assertNotIsInstance(x, Iterable)
345 self.assertNotIsInstance(x, Iterator)
365 self.assertNotIsInstance(NextOnly(), Iterator)
370 self.assertNotIsInstance(NextOnlyNew(), Iterator)
378 self.assertNotIsInstance(x, Sized)
396 self.assertNotIsInstance(x, Container)
415 self.assertNotIsInstance(x, Callable)
[all …]
Dtest_abc.py92 self.assertNotIsInstance(b, A)
93 self.assertNotIsInstance(b, (A,))
Dtest_hash.py112 self.assertNotIsInstance(obj, Hashable)
Dtest_typechecks.py82 self.assertNotIsInstance(3, X)
Dtest_ftplib.py619 self.assertNotIsInstance(self.client.sock, ssl.SSLSocket)
626 self.assertNotIsInstance(sock, ssl.SSLSocket)
640 self.assertNotIsInstance(sock, ssl.SSLSocket)
646 self.assertNotIsInstance(self.client.sock, ssl.SSLSocket)
Dtest_bool.py252 self.assertNotIsInstance(True & 1, bool)
256 self.assertNotIsInstance(True | 1, bool)
260 self.assertNotIsInstance(True ^ 1, bool)
Dtest_io.py2518 self.assertNotIsInstance(f, abcmodule.BufferedIOBase)
2519 self.assertNotIsInstance(f, abcmodule.TextIOBase)
2522 self.assertNotIsInstance(f, abcmodule.RawIOBase)
2524 self.assertNotIsInstance(f, abcmodule.TextIOBase)
2527 self.assertNotIsInstance(f, abcmodule.RawIOBase)
2528 self.assertNotIsInstance(f, abcmodule.BufferedIOBase)
Dtest_decimal.py1659 self.assertNotIsInstance(Decimal(0), numbers.Real)
Dtest_mailbox.py35 self.assertNotIsInstance(part, mailbox.Message)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
Dtest_case.py451 self.assertNotIsInstance(thing, dict)
452 self.assertRaises(self.failureException, self.assertNotIsInstance,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
Dcase.py965 def assertNotIsInstance(self, obj, cls, msg=None): member in TestCase