You are here

public function SearchDeprecationTest::testDirty in Drupal 8

@expectedDeprecation search_dirty() is deprecated in drupal:8.8.0 and is removed in drupal:9.0.0. Use custom implementation of \Drupal\search\SearchIndexInterface instead. See https://www.drupal.org/node/3075696

File

core/modules/search/tests/src/Kernel/SearchDeprecationTest.php, line 51

Class

SearchDeprecationTest
Tests deprecated search methods.

Namespace

Drupal\Tests\search\Kernel

Code

public function testDirty() {
  $this
    ->assertNull(search_dirty("foo"));
  $this
    ->assertEqual([], search_dirty());
}