protected function FrontPageTest::assertNotInResultSet in Drupal 8
Same name and namespace in other branches
- 9 core/modules/node/tests/src/Functional/Views/FrontPageTest.php \Drupal\Tests\node\Functional\Views\FrontPageTest::assertNotInResultSet()
- 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\ViewsCode
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);
}