function DatabaseSelectComplexTestCase2::setUp

Overrides DatabaseTestCase::setUp

File

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

Class

DatabaseSelectComplexTestCase2
Test more complex select statements, part 2.

Code

function setUp() {
    DrupalWebTestCase::setUp('database_test', 'node_access_test');
    $schema['test'] = drupal_get_schema('test');
    $schema['test_people'] = drupal_get_schema('test_people');
    $schema['test_one_blob'] = drupal_get_schema('test_one_blob');
    $schema['test_two_blobs'] = drupal_get_schema('test_two_blobs');
    $schema['test_task'] = drupal_get_schema('test_task');
    $this->installTables($schema);
    $this->addSampleData();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.