function DatabaseFetchTestCase::testQueryFetchObject in SimpleTest 7
Confirm that we can fetch a record to an object explicitly.
File
- tests/
database_test.test, line 282
Class
- DatabaseFetchTestCase
- Test fetch actions, part 1.
Code
function testQueryFetchObject() {
$records = array();
$result = db_query('SELECT name FROM {test} WHERE age = :age', array(
':age' => 25,
), array(
'fetch' => PDO::FETCH_OBJ,
));
foreach ($result as $record) {
$records[] = $record;
$this
->assertTrue(is_object($record), t('Record is an object.'));
$this
->assertIdentical($record->name, 'John', t('25 year old is John.'));
}
$this
->assertIdentical(count($records), 1, t('There is only one record.'));
}