function RefinableCacheableDependencyTraitTest::testNonCacheableDependencyAddDeprecation
@group legacy
File
-
core/
tests/ Drupal/ Tests/ Core/ Cache/ RefinableCacheableDependencyTraitTest.php, line 23
Class
- RefinableCacheableDependencyTraitTest
- Tests the cache RefinableCacheableDependencyTrait.
Namespace
Drupal\Tests\Core\CacheCode
public function testNonCacheableDependencyAddDeprecation() : void {
$this->expectDeprecation("Calling Drupal\\Core\\Cache\\RefinableCacheableDependencyTrait::addCacheableDependency() with an object that doesn't implement Drupal\\Core\\Cache\\CacheableDependencyInterface is deprecated in drupal:11.2.0 and is required in drupal:12.0.0. See https://www.drupal.org/node/3232020");
$this->addCacheableDependency(new \stdClass());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.