protected function ViewUnitTestBase::assertIdenticalResultset

Verifies that a result set returned by a View matches expected values.

The comparison is done on the string representation of the columns of the column map, taking the order of the rows into account, but not the order of the columns.

Parameters

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

array $expected_result: An expected result set.

array $column_map: (optional) An associative array mapping the columns of the result set from the view (as keys) and the expected result set (as values).

string $message: (optional) A custom message to display with the assertion. Defaults to 'Identical result set.'

Return value

bool TRUE if the assertion succeeded, or FALSE otherwise.

48 calls to ViewUnitTestBase::assertIdenticalResultset()
ArgumentLanguageTest::testArgument in drupal/core/modules/views/lib/Drupal/views/Tests/Language/ArgumentLanguageTest.php
Tests the language argument.
BasicTest::testSimpleResultSet in drupal/core/modules/views/lib/Drupal/views/Tests/BasicTest.php
Tests a trivial result set.
FilterCombineTest::testFilterCombineContains in drupal/core/modules/views/lib/Drupal/views/Tests/Handler/FilterCombineTest.php
FilterEqualityTest::testEqual in drupal/core/modules/views/lib/Drupal/views/Tests/Handler/FilterEqualityTest.php
FilterEqualityTest::testEqualGroupedExposed in drupal/core/modules/views/lib/Drupal/views/Tests/Handler/FilterEqualityTest.php

... See full list

File

drupal/core/modules/views/lib/Drupal/views/Tests/ViewUnitTestBase.php, line 69
Contains \Drupal\views\Tests\ViewUnitTestBase.

Class

ViewUnitTestBase
Defines a base class for Views unit testing.

Namespace

Drupal\views\Tests

Code

protected function assertIdenticalResultset($view, $expected_result, $column_map = array(), $message = 'Identical result set') {
  return $this
    ->assertIdenticalResultsetHelper($view, $expected_result, $column_map, $message, 'assertIdentical');
}