function PhpUnitBridgeIsolatedTest::testDeprecatedClass
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Core/Test/PhpUnitBridgeIsolatedTest.php \Drupal\Tests\Core\Test\PhpUnitBridgeIsolatedTest::testDeprecatedClass()
- 10 core/tests/Drupal/Tests/Core/Test/PhpUnitBridgeIsolatedTest.php \Drupal\Tests\Core\Test\PhpUnitBridgeIsolatedTest::testDeprecatedClass()
- 11.x core/tests/Drupal/Tests/Core/Test/PhpUnitBridgeIsolatedTest.php \Drupal\Tests\Core\Test\PhpUnitBridgeIsolatedTest::testDeprecatedClass()
File
-
core/
tests/ Drupal/ Tests/ Core/ Test/ PhpUnitBridgeIsolatedTest.php, line 19
Class
- PhpUnitBridgeIsolatedTest
- Test how unit tests interact with deprecation errors in process isolation.
Namespace
Drupal\Tests\Core\TestCode
public function testDeprecatedClass() {
$this->expectDeprecation('Drupal\\deprecation_test\\Deprecation\\FixtureDeprecatedClass is deprecated.');
$deprecated = new FixtureDeprecatedClass();
$this->assertEquals('test', $deprecated->testFunction());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.