PhpUnitBridgeIsolatedTest.php
Same filename in other branches
Namespace
Drupal\Tests\Core\TestFile
-
core/
tests/ Drupal/ Tests/ Core/ Test/ PhpUnitBridgeIsolatedTest.php
View source
<?php
namespace Drupal\Tests\Core\Test;
use Drupal\Tests\UnitTestCase;
use Drupal\deprecation_test\Deprecation\FixtureDeprecatedClass;
/**
* Test how unit tests interact with deprecation errors in process isolation.
*
* @runTestsInSeparateProcesses
* @preserveGlobalState disabled
*
* @group Test
* @group legacy
*/
class PhpUnitBridgeIsolatedTest extends UnitTestCase {
/**
* @expectedDeprecation Drupal\deprecation_test\Deprecation\FixtureDeprecatedClass is deprecated.
*/
public function testDeprecatedClass() {
$deprecated = new FixtureDeprecatedClass();
$this->assertEquals('test', $deprecated->testFunction());
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
PhpUnitBridgeIsolatedTest | Test how unit tests interact with deprecation errors in process isolation. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.