function LegacyExtensionTest::testDeprecatedCall

Same name in other branches
  1. 11.x core/tests/Drupal/Tests/Core/Extension/LegacyExtensionTest.php \Drupal\Tests\Core\Extension\LegacyExtensionTest::testDeprecatedCall()

@covers ::__call

File

core/tests/Drupal/Tests/Core/Extension/LegacyExtensionTest.php, line 20

Class

LegacyExtensionTest
@coversDefaultClass \Drupal\Core\Extension\Extension @group Extension @group legacy

Namespace

Drupal\Tests\Core\Extension

Code

public function testDeprecatedCall() : void {
    $extension = new Extension($this->root, 'theme', 'core/themes/stark/stark.info.yml', 'stark.theme');
    $file = $extension->getFileInfo();
    $this->expectDeprecation('Drupal\\Core\\Extension\\Extension::__call(\'getCTime\') is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. Use \\Drupal\\Core\\Extension\\Extension::getFileInfo() instead. See https://www.drupal.org/node/3322608');
    $this->assertSame($file->getCTime(), $extension->getCTime());
    $this->expectDeprecation('Drupal\\Core\\Extension\\Extension::__call(\'getMTime\') is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. Use \\Drupal\\Core\\Extension\\Extension::getFileInfo() instead. See https://www.drupal.org/node/3322608');
    $this->assertSame($file->getMTime(), $extension->getMTime());
}

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