You are here

function PropertiesBaseTestCase::setUp in Dynamic properties 7

Implements setUp().

Overrides DrupalWebTestCase::setUp

2 calls to PropertiesBaseTestCase::setUp()
PropertiesCompareTestCase::setUp in properties_compare/properties_compare.test
Implements setUp().
PropertiesTemplateBaseTestCase::setUp in properties_template/properties_template.test
Implements setUp().
2 methods override PropertiesBaseTestCase::setUp()
PropertiesCompareTestCase::setUp in properties_compare/properties_compare.test
Implements setUp().
PropertiesTemplateBaseTestCase::setUp in properties_template/properties_template.test
Implements setUp().

File

./properties.test, line 69
Contains tests for the properties.module

Class

PropertiesBaseTestCase
Base class for properties tests, provides helper methods.

Code

function setUp() {
  $args = func_get_args();
  if (empty($args)) {
    $args = array(
      'properties',
      'properties_sql',
    );
  }
  parent::setUp($args);
  $this->admin = NULL;
  $this->editor = NULL;
}