protected function CoveredClass::protectedMethod

Overrides CoveredParentClass::protectedMethod

1 call to CoveredClass::protectedMethod()

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();
}