1 database_test.test | DatabaseFetchTestCase::testQueryFetchDefault() |
Confirm that we can fetch a record properly in default object mode.
File
- core/
modules/ simpletest/ tests/ database_test.test, line 362 - Database tests.
Class
- DatabaseFetchTestCase
- Test fetch actions, part 1.
Code
function testQueryFetchDefault() {
$records = array();
$result = db_query('SELECT name FROM {test} WHERE age = :age', array(':age' => 25));
$this->assertTrue($result instanceof DatabaseStatementInterface, 'Result set is a Backdrop statement object.');
foreach ($result as $record) {
$records[] = $record;
$this->assertTrue(is_object($record), 'Record is an object.');
$this->assertIdentical($record->name, 'John', '25 year old is John.');
}
$this->assertIdentical(count($records), 1, 'There is only one record.');
}