function PhpUnitBridgeTest::testSilencedError

Tests deprecation message from deprecation_test_function().

File

core/tests/Drupal/FunctionalTests/Core/Test/PhpUnitBridgeTest.php, line 26

Class

PhpUnitBridgeTest
Tests Drupal's integration with Symfony PHPUnit Bridge.

Namespace

Drupal\FunctionalTests\Core\Test

Code

public function testSilencedError() {
  $this->expectDeprecation('This is the deprecation message for deprecation_test_function().');
  $this->assertEquals('known_return_value', deprecation_test_function());
}

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