CIPHPUnitTestCase::verifyInvokedOnce PHP Method

verifyInvokedOnce() public method

Verifies that method was invoked only once
public verifyInvokedOnce ( object $mock, string $method, array $params = null )
$mock object PHPUnit mock object
$method string
$params array arguments
    public function verifyInvokedOnce($mock, $method, $params = null)
    {
        $this->double->verifyInvokedOnce($mock, $method, $params);
    }