CIPHPUnitTestCase::verifyNeverInvoked PHP Method

verifyNeverInvoked() public method

Verifies that method was not called
public verifyNeverInvoked ( object $mock, string $method, array $params = null )
$mock object PHPUnit mock object
$method string
$params array arguments
    public function verifyNeverInvoked($mock, $method, $params = null)
    {
        $this->double->verifyNeverInvoked($mock, $method, $params);
    }