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.

54 calls to ViewUnitTestBase::assertIdenticalResultset()
ArgumentDateTest::testCreatedFullDateHandler in drupal/core/modules/views/lib/Drupal/views/Tests/Handler/ArgumentDateTest.php
Tests the CreatedFullDate handler.
ArgumentDateTest::testDayHandler in drupal/core/modules/views/lib/Drupal/views/Tests/Handler/ArgumentDateTest.php
Tests the Day handler.
ArgumentDateTest::testMonthHandler in drupal/core/modules/views/lib/Drupal/views/Tests/Handler/ArgumentDateTest.php
Tests the Month handler.
ArgumentDateTest::testWeekHandler in drupal/core/modules/views/lib/Drupal/views/Tests/Handler/ArgumentDateTest.php
Tests the Week handler.
ArgumentDateTest::testYearHandler in drupal/core/modules/views/lib/Drupal/views/Tests/Handler/ArgumentDateTest.php
Tests the Year handler.

... See full list

File

drupal/core/modules/views/lib/Drupal/views/Tests/ViewUnitTestBase.php, line 92
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 = NULL) {
  return $this
    ->assertIdenticalResultsetHelper($view, $expected_result, $column_map, 'assertIdentical', $message);
}