function TourTipLegacyTest::testPluginHelperDeprecation
Same name in other branches
- 11.x core/modules/tour/tests/src/Kernel/TourTipLegacyTest.php \Drupal\Tests\tour\Kernel\TourTipLegacyTest::testPluginHelperDeprecation()
File
-
core/
modules/ tour/ tests/ src/ Kernel/ TourTipLegacyTest.php, line 19
Class
- TourTipLegacyTest
- @coversDefaultClass \Drupal\tour\TourTipPluginInterface @group tour @group legacy
Namespace
Drupal\Tests\tour\KernelCode
public function testPluginHelperDeprecation() : void {
$this->expectDeprecation('The Drupal\\tour\\TourTipPluginInterface is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. Implement Drupal\\tour\\TipPluginInterface instead. See https://www.drupal.org/node/3340701');
$plugin = $this->createMock(TourTipPluginInterface::class);
$this->assertInstanceOf(TourTipPluginInterface::class, $plugin);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.