Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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)
179 self.assertIsInstance(suite, unittest2.TestSuite)
392 self.assertIsInstance(suite, loader.suiteClass)
410 self.assertIsInstance(suite, loader.suiteClass)
427 self.assertIsInstance(suite, loader.suiteClass)
470 self.assertIsInstance(suite, loader.suiteClass)
485 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.py128 self.assertIsInstance(test.id(), six.string_types)
H A Dtest_unittest2_with.py28 self.assertIsInstance(e, ExceptionMock)
H A Dtest_case.py546 self.assertIsInstance(Foo().id(), six.string_types)
625 self.assertIsInstance(thing, list)
626 self.assertRaises(self.failureException, self.assertIsInstance,
/llvm-project-15.0.7/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)
/llvm-project-15.0.7/libcxx/test/libcxx/selftest/dsl/
H A Ddsl.sh.py268 self.assertIsInstance(macros, dict)
271 self.assertIsInstance(k, str)
272 self.assertIsInstance(v, str)
300 self.assertIsInstance(macros, dict)
303 self.assertIsInstance(k, str)
304 self.assertIsInstance(v, int)
/llvm-project-15.0.7/lldb/test/API/python_api/lldbutil/
H A DTestSwigVersion.py21 self.assertIsInstance(lldb.swig_version, tuple)
/llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/
H A Dcase.py1048 def assertIsInstance(self, obj, cls, msg=None): member in TestCase