public function assertNodeAccess(array
$ops, NodeInterface
$node, AccountInterface
$account) { foreach ($ops as $op =>
$result) { $this->
assertEquals($result,
$this->accessHandler->
access($node,
$op,
$account),
$this->
nodeAccessAssertMessage($op,
$result,
$node->
language() ->
getId()));
} } /**
* Asserts that node create access correctly grants or denies access.
*
* @param string $bundle
* The node bundle to check access to.
* @param bool $result
* Whether access should be granted or not.
* @param \Drupal\Core\Session\AccountInterface $account
* The user account for which to check access.
* @param string|null $langcode
* (optional) The language code indicating which translation of the node
* to check. If NULL, the untranslated (fallback) access is checked.
*
* @internal
*/