protected function CoveredClass::protectedMethod

Overrides CoveredParentClass::protectedMethod

1 call to CoveredClass::protectedMethod()
CoveredClass::publicMethod in drupal/core/vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoveredClass.php

File

drupal/core/vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoveredClass.php, line 27

Class

CoveredClass

Namespace

Foo

Code

protected function protectedMethod() {
  parent::protectedMethod();
  $this
    ->privateMethod();
}