You are here

protected function FrontPageTest::assertNotInResultSet in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/node/tests/src/Functional/Views/FrontPageTest.php \Drupal\Tests\node\Functional\Views\FrontPageTest::assertNotInResultSet()
  2. 10 core/modules/node/tests/src/Functional/Views/FrontPageTest.php \Drupal\Tests\node\Functional\Views\FrontPageTest::assertNotInResultSet()

Verifies that an amount of nids aren't in the result.

Parameters

\Drupal\views\ViewExecutable $view: An executed View.

array $not_expected_nids: An array of nids which should not be part of the resultset.

string $message: (optional) A custom message to display with the assertion.

1 call to FrontPageTest::assertNotInResultSet()
FrontPageTest::testFrontPage in core/modules/node/tests/src/Functional/Views/FrontPageTest.php
Tests the frontpage.

File

core/modules/node/tests/src/Functional/Views/FrontPageTest.php, line 170

Class

FrontPageTest
Tests the default frontpage provided by views.

Namespace

Drupal\Tests\node\Functional\Views

Code

protected function assertNotInResultSet(ViewExecutable $view, array $not_expected_nids, $message = '') {
  $found_nids = array_filter($view->result, function ($row) use ($not_expected_nids) {
    return in_array($row->nid, $not_expected_nids);
  });
  $this
    ->assertEmpty($found_nids, $message);
}