HomeSort by relevance Sort by last modified time
    Searched refs:_mock_self (Results 1 - 3 of 3) sorted by null

  /external/python/cpython3/Lib/unittest/
mock.py 100 def checksig(_mock_self, *args, **kwargs):
770 def assert_not_called(_mock_self):
773 self = _mock_self
779 def assert_called(_mock_self):
782 self = _mock_self
788 def assert_called_once(_mock_self):
791 self = _mock_self
797 def assert_called_with(_mock_self, *args, **kwargs):
802 self = _mock_self
817 def assert_called_once_with(_mock_self, *args, **kwargs)
    [all...]
  /external/python/cpython2/Lib/test/
_mock_backport.py 111 def checksig(_mock_self, *args, **kwargs):
762 def assert_not_called(_mock_self):
765 self = _mock_self
771 def assert_called_with(_mock_self, *args, **kwargs):
776 self = _mock_self
790 def assert_called_once_with(_mock_self, *args, **kwargs):
793 self = _mock_self
906 def __call__(_mock_self, *args, **kwargs):
909 _mock_self._mock_check_sig(*args, **kwargs)
910 return _mock_self._mock_call(*args, **kwargs
    [all...]
  /external/pdfium/third_party/pymock/
mock.py 211 src = "lambda _mock_self, %s: None" % signature
823 def assert_called_with(_mock_self, *args, **kwargs):
828 self = _mock_self
838 def assert_called_once_with(_mock_self, *args, **kwargs):
841 self = _mock_self
951 def __call__(_mock_self, *args, **kwargs):
954 _mock_self._mock_check_sig(*args, **kwargs)
955 return _mock_self._mock_call(*args, **kwargs)
958 def _mock_call(_mock_self, *args, **kwargs):
959 self = _mock_self
    [all...]

Completed in 325 milliseconds