Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dtest_loader.py80 self.assertIsInstance(suite, loader.suiteClass)
101 self.assertIsInstance(suite, loader.suiteClass)
114 self.assertIsInstance(suite, loader.suiteClass)
129 self.assertIsInstance(suite, loader.suiteClass)
172 self.assertIsInstance(tests, unittest2.TestSuite)
179 self.assertIsInstance(suite, unittest2.TestSuite)
195 self.assertIsInstance(suite, unittest2.TestSuite)
392 self.assertIsInstance(suite, loader.suiteClass)
410 self.assertIsInstance(suite, loader.suiteClass)
427 self.assertIsInstance(suite, loader.suiteClass)
[all …]
H A Dtest_result.py183 self.assertIsInstance(formatted_exc, str)
232 self.assertIsInstance(formatted_exc, str)
344 self.assertIsInstance(sys.stdout, StringIO)
345 self.assertIsInstance(sys.stderr, StringIO)
H A Dtest_functiontestcase.py127 self.assertIsInstance(test.id(), str)
H A Dtest_unittest2_with.py28 self.assertIsInstance(e, ExceptionMock)
H A Dtest_case.py545 self.assertIsInstance(Foo().id(), str)
624 self.assertIsInstance(thing, list)
625 self.assertRaises(self.failureException, self.assertIsInstance,
/openbsd-src/gnu/llvm/clang/bindings/python/tests/cindex/
H A Dtest_index.py22 self.assertIsInstance(index, Index)
24 self.assertIsInstance(tu, TranslationUnit)
26 self.assertIsInstance(tu, TranslationUnit)
H A Dtest_translation_unit.py63 self.assertIsInstance(c, Cursor)
230 self.assertIsInstance(tu, TranslationUnit)
238 self.assertIsInstance(f, File)
251 self.assertIsInstance(f, File)
263 self.assertIsInstance(location, SourceLocation)
268 self.assertIsInstance(location, SourceLocation)
279 self.assertIsInstance(r, SourceRange)
286 self.assertIsInstance(r, SourceRange)
298 self.assertIsInstance(r, SourceRange)
H A Dtest_token_kind.py37 self.assertIsInstance(literal, TokenKind)
42 self.assertIsInstance(t, TokenKind)
H A Dtest_tokens.py42 self.assertIsInstance(loc, SourceLocation)
56 self.assertIsInstance(extent, SourceRange)
H A Dtest_type.py126 self.assertIsInstance(t.translation_unit, TranslationUnit)
131 self.assertIsInstance(t.translation_unit, TranslationUnit)
282 self.assertIsInstance(foo.type.is_function_variadic(), bool)
336 self.assertIsInstance(i.type.is_volatile_qualified(), bool)
351 self.assertIsInstance(i.type.is_restrict_qualified(), bool)
H A Dtest_cursor.py103 self.assertIsInstance(cursor.translation_unit, TranslationUnit)
108 self.assertIsInstance(cursor.translation_unit, TranslationUnit)
/openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/
H A Dcase.py1043 def assertIsInstance(self, obj, cls, msg=None): member in TestCase