PhpUnitBridgeTest.php
Namespace
Drupal\FunctionalTests\Core\TestFile
- 
              core/tests/ Drupal/ FunctionalTests/ Core/ Test/ PhpUnitBridgeTest.php 
View source
<?php
declare (strict_types=1);
namespace Drupal\FunctionalTests\Core\Test;
use Drupal\Core\Url;
use Drupal\Tests\BrowserTestBase;
/**
 * Tests Drupal's integration with Symfony PHPUnit Bridge.
 *
 * @group Test
 * @group legacy
 */
class PhpUnitBridgeTest extends BrowserTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'deprecation_test',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  
  /**
   * Tests deprecation message from deprecation_test_function().
   */
  public function testSilencedError() : void {
    $this->expectDeprecation('This is the deprecation message for deprecation_test_function().');
    $this->assertEquals('known_return_value', deprecation_test_function());
  }
  
  /**
   * Tests deprecation message from deprecated route.
   */
  public function testErrorOnSiteUnderTest() : void {
    $this->expectDeprecation('This is the deprecation message for deprecation_test_function().');
    $this->drupalGet(Url::fromRoute('deprecation_test.route'));
  }
}Classes
| Title | Deprecated | Summary | 
|---|---|---|
| PhpUnitBridgeTest | Tests Drupal's integration with Symfony PHPUnit Bridge. | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
