def verify()

in doubles/proxy.py [0:0]


    def verify(self):
        """Verifies all expectations on all method doubles.

        :raise: ``MockExpectationError`` on the first expectation that is not satisfied, if any.
        """

        for method_double in self._method_doubles.values():
            method_double.verify()