function ProxyBuilderTest::testBuildNoMethod

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/ProxyBuilder/ProxyBuilderTest.php \Drupal\Tests\Component\ProxyBuilder\ProxyBuilderTest::testBuildNoMethod()
  2. 8.9.x core/tests/Drupal/Tests/Component/ProxyBuilder/ProxyBuilderTest.php \Drupal\Tests\Component\ProxyBuilder\ProxyBuilderTest::testBuildNoMethod()
  3. 10 core/tests/Drupal/Tests/Component/ProxyBuilder/ProxyBuilderTest.php \Drupal\Tests\Component\ProxyBuilder\ProxyBuilderTest::testBuildNoMethod()

Tests the basic methods like the constructor and the lazyLoadItself method.

@covers ::build @covers ::buildConstructorMethod @covers ::buildLazyLoadItselfMethod

File

core/tests/Drupal/Tests/Component/ProxyBuilder/ProxyBuilderTest.php, line 63

Class

ProxyBuilderTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Component%21ProxyBuilder%21ProxyBuilder.php/class/ProxyBuilder/11.x" title="Generates the string representation of the proxy service." class="local">\Drupal\Component\ProxyBuilder\ProxyBuilder</a> @group proxy_builder

Namespace

Drupal\Tests\Component\ProxyBuilder

Code

public function testBuildNoMethod() : void {
    $class = 'Drupal\\Tests\\Component\\ProxyBuilder\\TestServiceNoMethod';
    $result = $this->proxyBuilder
        ->build($class);
    $this->assertEquals($this->buildExpectedClass($class, ''), $result);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.