DatabaseFetchTestCase::testQueryFetchClass

7 database_test.test DatabaseFetchTestCase::testQueryFetchClass()
8 database.test DatabaseFetchTestCase::testQueryFetchClass()

Confirm that we can fetch a record into a new instance of a custom class.

See also

FakeRecord

File

modules/simpletest/tests/database_test.test, line 351

Code

function testQueryFetchClass() {
  $records = array();
  $result = db_query('SELECT name FROM {test} WHERE age = :age', array(':age' => 25), array('fetch' => 'FakeRecord'));
  foreach ($result as $record) {
    $records[] = $record;
    if ($this->assertTrue($record instanceof FakeRecord, t('Record is an object of class FakeRecord.'))) {
      $this->assertIdentical($record->name, 'John', t('25 year old is John.'));
    }
  }

  $this->assertIdentical(count($records), 1, t('There is only one record.'));
}
Login or register to post comments