public function ComputingUnitTestCase::setUp in Drupal Computing 7
Sets up unit test environment.
Unlike DrupalWebTestCase::setUp(), DrupalUnitTestCase::setUp() does not install modules because tests are performed without accessing the database. Any required files must be explicitly included by the child class setUp() method.
Overrides DrupalUnitTestCase::setUp
File
- ./
computing.test, line 95
Class
Code
public function setUp() {
drupal_load('module', 'computing');
parent::setUp();
}