You are here

public function SortArrayTest::testSortByWeightElement in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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().

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

File

core/tests/Drupal/Tests/Component/Utility/SortArrayTest.php, line 36
Contains \Drupal\Tests\Component\Utility\SortArrayTest.

Class

SortArrayTest
Tests the SortArray component.

Namespace

Drupal\Tests\Component\Utility

Code

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