function PollTestCase::_generateChoices
14 calls to PollTestCase::_generateChoices()
- PollBlockTestCase::testRecentBlock in drupal-7.x/
modules/ poll/ poll.test - PollBlockTestCase::testRecentBlock in drupal-7.x/
modules/ poll/ poll.test - PollCreateTestCase::testPollClose in drupal-7.x/
modules/ poll/ poll.test - PollCreateTestCase::testPollClose in drupal-7.x/
modules/ poll/ poll.test - PollCreateTestCase::testPollCreate in drupal-7.x/
modules/ poll/ poll.test
Archivo
- drupal-7.x/
modules/ poll/ poll.test, line 108 - Tests for poll.module.
Class
Código
function _generateChoices($count = 7) {
$choices = array();
for ($i = 1; $i <= $count; $i++) {
$choices[] = $this->randomName();
}
return $choices;
}