public function SortArrayTest::testSortByWeightElement in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Component/Utility/SortArrayTest.php \Drupal\Tests\Component\Utility\SortArrayTest::testSortByWeightElement()
Tests SortArray::sortByWeightElement() input against expected output.
@dataProvider providerSortByWeightElement @covers ::sortByWeightElement @covers ::sortByKeyInt
Parameters
array $a: The first input array for the SortArray::sortByWeightElement() method.
array $b: The second input array for the SortArray::sortByWeightElement().
int $expected: The expected output from calling the method.
File
- core/
tests/ Drupal/ Tests/ Component/ Utility/ SortArrayTest.php, line 31
Class
- SortArrayTest
- Tests the SortArray component.
Namespace
Drupal\Tests\Component\UtilityCode
public function testSortByWeightElement($a, $b, $expected) {
$result = SortArray::sortByWeightElement($a, $b);
$this
->assertBothNegativePositiveOrZero($expected, $result);
}