CakeDC\Users\Test\TestCase\View\Helper\UserHelperTest::testAddReCaptchaScript PHP 메소드

testAddReCaptchaScript() 공개 메소드

Test add ReCaptcha field
public testAddReCaptchaScript ( ) : void
리턴 void
    public function testAddReCaptchaScript()
    {
        $this->View->expects($this->at(0))->method('append')->with('script', $this->stringContains('https://www.google.com/recaptcha/api.js'));
        $this->User->addReCaptchaScript();
    }