Searched refs:assertIsInstance (Results 1 – 14 of 14) sorted by relevance
80 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 …]
183 self.assertIsInstance(formatted_exc, str)232 self.assertIsInstance(formatted_exc, str)344 self.assertIsInstance(sys.stdout, StringIO)345 self.assertIsInstance(sys.stderr, StringIO)
128 self.assertIsInstance(test.id(), six.string_types)
28 self.assertIsInstance(e, ExceptionMock)
546 self.assertIsInstance(Foo().id(), six.string_types)625 self.assertIsInstance(thing, list)626 self.assertRaises(self.failureException, self.assertIsInstance,
22 self.assertIsInstance(index, Index)24 self.assertIsInstance(tu, TranslationUnit)26 self.assertIsInstance(tu, TranslationUnit)
63 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)
37 self.assertIsInstance(literal, TokenKind)42 self.assertIsInstance(t, TokenKind)
42 self.assertIsInstance(loc, SourceLocation)56 self.assertIsInstance(extent, SourceRange)
126 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)
103 self.assertIsInstance(cursor.translation_unit, TranslationUnit)108 self.assertIsInstance(cursor.translation_unit, TranslationUnit)
268 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)
21 self.assertIsInstance(lldb.swig_version, tuple)
1048 def assertIsInstance(self, obj, cls, msg=None): member in TestCase