function NodeWebTestCase::setUp
Overrides DrupalWebTestCase::setUp
3 calls to NodeWebTestCase::setUp()
- NodeAccessFieldTestCase::setUp in modules/
node/ node.test - Sets up a Drupal site for running functional and integration tests.
- NodeEntityViewModeAlterTest::setUp in modules/
node/ node.test - Sets up a Drupal site for running functional and integration tests.
- NodePageCacheTest::setUp in modules/
node/ node.test - Sets up a Drupal site for running functional and integration tests.
3 methods override NodeWebTestCase::setUp()
- NodeAccessFieldTestCase::setUp in modules/
node/ node.test - Sets up a Drupal site for running functional and integration tests.
- NodeEntityViewModeAlterTest::setUp in modules/
node/ node.test - Sets up a Drupal site for running functional and integration tests.
- NodePageCacheTest::setUp in modules/
node/ node.test - Sets up a Drupal site for running functional and integration tests.
File
-
modules/
node/ node.test, line 12
Class
- NodeWebTestCase
- Defines a base class for testing the Node module.
Code
function setUp() {
$modules = func_get_args();
if (isset($modules[0]) && is_array($modules[0])) {
$modules = $modules[0];
}
$modules[] = 'node';
parent::setUp($modules);
// Create Basic page and Article node types.
if ($this->profile != 'standard') {
$this->drupalCreateContentType(array(
'type' => 'page',
'name' => 'Basic page',
));
$this->drupalCreateContentType(array(
'type' => 'article',
'name' => 'Article',
));
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.