function StaticDiscoveryDecoratorTest::testCall
@legacy-covers ::__call
Attributes
#[DataProvider('providerCall')]
File
-
core/
tests/ Drupal/ Tests/ Component/ Plugin/ Discovery/ StaticDiscoveryDecoratorTest.php, line 195
Class
Namespace
Drupal\Tests\Component\Plugin\DiscoveryCode
public function testCall($method, $args) : void {
// Mock a decorated object.
$mock_decorated = $this->getMockBuilder(StaticDiscoveryTestDecoratedClass::class)
->onlyMethods([
$method,
])
->getMock();
// Our mocked method will return any arguments sent to it.
$mock_decorated->expects($this->once())
->method($method)
->willReturnCallback(function () {
return \func_get_args();
});
// Create the decorator.
$decorator = new StaticDiscoveryDecorator($mock_decorated);
// Exercise __call on the decorator.
$this->assertEquals($args, \call_user_func_array([
$decorator,
$method,
], $args));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.