protected function BotchaBaseWebTestCase::setCommentFormValues in BOTCHA Spam Prevention 7.3
Same name and namespace in other branches
- 6 botcha.test \BotchaBaseWebTestCase::setCommentFormValues()
- 6.2 botcha.test \BotchaBaseWebTestCase::setCommentFormValues()
- 6.3 tests/botcha.simpletest.test \BotchaBaseWebTestCase::setCommentFormValues()
- 7 botcha.test \BotchaBaseWebTestCase::setCommentFormValues()
- 7.2 botcha.test \BotchaBaseWebTestCase::setCommentFormValues()
1 call to BotchaBaseWebTestCase::setCommentFormValues()
- BotchaBaseWebTestCase::setFormValues in tests/
botcha.simpletest.test - Helper function to generate a default form values array for any form.
File
- tests/
botcha.simpletest.test, line 162 - Simpletest-tests for BOTCHA module.
Class
- BotchaBaseWebTestCase
- Base class for BOTCHA tests.
Code
protected function setCommentFormValues($should_pass = NULL) {
$langcode = LANGUAGE_NONE;
$edit = array(
'subject' => 'comment_subject ' . $this
->randomName(32),
// @todo Abstract it.
//'comment' => 'comment_body ' . $this->randomName(256),
"comment_body[{$langcode}][0][value]" => 'comment_body ' . $this
->randomName(256),
);
return $edit;
}