function ProxyBuilderTest::testBuildWithProtectedAndPrivateMethod
@covers ::buildMethod
      
    
@covers ::buildParameter
      
    
@covers ::buildMethodBody
      
    
File
- 
              core/
tests/ Drupal/ Tests/ Component/ ProxyBuilder/ ProxyBuilderTest.php, line 237  
Class
- ProxyBuilderTest
 - @coversDefaultClass \Drupal\Component\ProxyBuilder\ProxyBuilder[[api-linebreak]] @group proxy_builder
 
Namespace
Drupal\Tests\Component\ProxyBuilderCode
public function testBuildWithProtectedAndPrivateMethod() : void {
  $class = 'Drupal\\Tests\\Component\\ProxyBuilder\\TestServiceWithProtectedMethods';
  $result = $this->proxyBuilder
    ->build($class);
  $method_body = <<<'EOS'
  
  /**
   * {@inheritdoc}
   */
  public function testMethod($parameter)
  {
      return $this->lazyLoadItself()->testMethod($parameter);
  }
  
  EOS;
  $this->assertEquals($this->buildExpectedClass($class, $method_body), $result);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.