DrupalTestCase::$skipClasses

This class is skipped when looking for the source of an assertion.

When displaying which function an assert comes from, it's not too useful to see "drupalWebTestCase->drupalLogin()', we would like to see the test that called it. So we need to skip the classes defining these helper methods.

Type: skipClasses

File

modules/simpletest/drupal_web_test_case.php, line 120

Class

DrupalTestCase
Base class for Drupal tests.

Code

protected $skipClasses = array(
    __CLASS__ => TRUE,
);

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