You are here

protected property TestBase::$skipClasses in SimpleTest 8.3

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 "WebTestBase->drupalLogin()', we would like to see the test that called it. So we need to skip the classes defining these helper methods.

File

src/TestBase.php, line 85

Class

TestBase
Base class for Drupal tests.

Namespace

Drupal\simpletest

Code

protected $skipClasses = [
  __CLASS__ => TRUE,
];