You are here

public function ProxyBuilderTest::testBuildWithNestedInterface in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Component/ProxyBuilder/ProxyBuilderTest.php \Drupal\Tests\Component\ProxyBuilder\ProxyBuilderTest::testBuildWithNestedInterface()

@covers ::build

File

core/tests/Drupal/Tests/Component/ProxyBuilder/ProxyBuilderTest.php, line 201
Contains \Drupal\Tests\Component\ProxyBuilder\ProxyBuilderTest.

Class

ProxyBuilderTest
@coversDefaultClass \Drupal\Component\ProxyBuilder\ProxyBuilder @group proxy_builder

Namespace

Drupal\Tests\Component\ProxyBuilder

Code

public function testBuildWithNestedInterface() {
  $class = 'Drupal\\Tests\\Component\\ProxyBuilder\\TestServiceWithChildInterfaces';
  $result = $this->proxyBuilder
    ->build($class);
  $method_body = '';
  $interface_string = ' implements \\Drupal\\Tests\\Component\\ProxyBuilder\\TestChildInterface';
  $this
    ->assertEquals($this
    ->buildExpectedClass($class, $method_body, $interface_string), $result);
}