function PromotedContentPageTest::assertNotInResultSet

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

@internal

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.

File

core/modules/node/tests/src/Functional/Views/PromotedContentPageTest.php, line 172

Class

PromotedContentPageTest
Tests the promoted content view provided with views.

Namespace

Drupal\Tests\node\Functional\Views

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.