protected function CaptchaPersistenceTestCase::assertDifferentCsid in CAPTCHA 6.2
Same name and namespace in other branches
- 7 captcha.test \CaptchaPersistenceTestCase::assertDifferentCsid()
3 calls to CaptchaPersistenceTestCase::assertDifferentCsid()
File
- ./
captcha.test, line 819 - Tests for CAPTCHA module.
Class
Code
protected function assertDifferentCsid($captcha_sid_initial) {
$captcha_sid = $this
->getCaptchaSidFromForm();
$this
->assertNotEqual($captcha_sid_initial, $captcha_sid, "CAPTCHA session ID should be different.");
}