function SortArrayTest::testSortByTitleProperty

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Component/Utility/SortArrayTest.php \Drupal\Tests\Component\Utility\SortArrayTest::testSortByTitleProperty()
  2. 8.9.x core/tests/Drupal/Tests/Component/Utility/SortArrayTest.php \Drupal\Tests\Component\Utility\SortArrayTest::testSortByTitleProperty()
  3. 11.x core/tests/Drupal/Tests/Component/Utility/SortArrayTest.php \Drupal\Tests\Component\Utility\SortArrayTest::testSortByTitleProperty()

Tests SortArray::sortByTitleProperty() input against expected output.

@dataProvider providerSortByTitleProperty @covers ::sortByTitleProperty @covers ::sortByKeyString

Parameters

array $a: The first input item for comparison.

array $b: The second item for comparison.

int $expected: The expected output from calling the method.

File

core/tests/Drupal/Tests/Component/Utility/SortArrayTest.php, line 254

Class

SortArrayTest
Tests the SortArray component.

Namespace

Drupal\Tests\Component\Utility

Code

public function testSortByTitleProperty($a, $b, $expected) : void {
    $result = SortArray::sortByTitleProperty($a, $b);
    $this->assertBothNegativePositiveOrZero($expected, $result);
}

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