function AssertLegacyTrait::assertIdentical
Same name in other branches
- 9 core/tests/Drupal/KernelTests/AssertLegacyTrait.php \Drupal\KernelTests\AssertLegacyTrait::assertIdentical()
See also
\Drupal\simpletest\TestBase::assertIdentical()
Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertSame() instead.
456 calls to AssertLegacyTrait::assertIdentical()
- AccessRoleTest::testAccessRole in core/
modules/ user/ tests/ src/ Functional/ Views/ AccessRoleTest.php - Tests role access plugin.
- ActionTest::testDependencies in core/
modules/ system/ tests/ src/ Kernel/ Action/ ActionTest.php - Tests the dependency calculation of actions.
- AreaViewTest::testViewArea in core/
modules/ views/ tests/ src/ Kernel/ Handler/ AreaViewTest.php - Tests the view area handler.
- AttachedAssetsTest::testRenderOrder in core/
tests/ Drupal/ KernelTests/ Core/ Asset/ AttachedAssetsTest.php - Tests JavaScript and CSS asset ordering.
- AttachedAssetsTest::testSettings in core/
tests/ Drupal/ KernelTests/ Core/ Asset/ AttachedAssetsTest.php - Tests JavaScript settings.
File
-
core/
tests/ Drupal/ KernelTests/ AssertLegacyTrait.php, line 56
Class
- AssertLegacyTrait
- Translates Simpletest assertion methods to PHPUnit.
Namespace
Drupal\KernelTestsCode
protected function assertIdentical($actual, $expected, $message = '') {
$this->assertSame($expected, $actual, (string) $message);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.