You are here

protected function DrupalRemoteTestCase::performActions in SimpleTest 7.2

Perform all actions listed in the $actions array.

1 call to DrupalRemoteTestCase::performActions()
DrupalRemoteTestCase::tearDown in ./drupal_web_test_case.php
Perform and revert actions, then tear down based on what setUp() did.

File

./drupal_web_test_case.php, line 3644
Provides DrupalTestCase, DrupalUnitTestCase, and DrupalWebTestCase classes.

Class

DrupalRemoteTestCase
Base class used for writing atomic remote tests.

Code

protected function performActions() {
  foreach ($this->actions as $action) {
    call_user_func(array(
      $this,
      'perform' . ucfirst($action),
    ));
  }
}