def _is_testcase_class(self, obj ):
'''????????
:returns bool - ??????
'''
return ( isinstance(obj, types.TypeType) and
issubclass(obj, TestCase) and
hasattr(obj, "runTest") and
getattr(obj, "priority", None))