public function testBuildProxyClassNameForModule() { $class_name =
$this->proxyBuilder->
buildProxyClassName('Drupal\views_ui\ParamConverter\ViewUIConverter'
);
$this->
assertEquals('Drupal\views_ui\ProxyClass\ParamConverter\ViewUIConverter',
$class_name);
} /**
* @covers ::buildProxyNamespace
*/
public function testBuildProxyNamespace() { $class_name =
$this->proxyBuilder->
buildProxyNamespace('Drupal\Tests\Component\ProxyBuilder\TestServiceNoMethod'
);
$this->
assertEquals('Drupal\Tests\ProxyClass\Component\ProxyBuilder',
$class_name);
} /**
* Tests the basic methods like the constructor and the lazyLoadItself method.
*
* @covers ::build
* @covers ::buildConstructorMethod
* @covers ::buildLazyLoadItselfMethod
*/
public function testBuildNoMethod() {