private function MongoDBLogTestCase::getContentUpdate in MongoDB 6
Same name and namespace in other branches
- 8 mongodb_watchdog/mongodb_watchdog.test \MongoDBLogTestCase::getContentUpdate()
- 7 mongodb_watchdog/mongodb_watchdog.test \MongoDBLogTestCase::getContentUpdate()
Create content update based on content type.
Parameters
string $type: Content type.
Return value
array Content.
1 call to MongoDBLogTestCase::getContentUpdate()
- MongoDBLogTestCase::doNode in mongodb_watchdog/
mongodb_watchdog.test - Generate and verify node events.
File
- mongodb_watchdog/
mongodb_watchdog.test, line 504 - Test class for MongoDB_watchdog.
Class
- MongoDBLogTestCase
- Test the behaviour of watchdog() mongodb_watchdog, not dblog.
Code
private function getContentUpdate($type) {
switch ($type) {
case 'poll':
$content = array(
'choice[chid:1][chtext]' => $this
->randomName(32),
'choice[chid:2][chtext]' => $this
->randomName(32),
);
break;
default:
$content = array(
'body' => $this
->randomName(32),
);
break;
}
return $content;
}