You are here

class ElementTest in Lightning Core 8.2

Same name in this branch
  1. 8.2 tests/src/Unit/ElementTest.php \Drupal\Tests\lightning_core\Unit\ElementTest
  2. 8.2 tests/src/Kernel/ElementTest.php \Drupal\Tests\lightning_core\Kernel\ElementTest
Same name and namespace in other branches
  1. 8.5 tests/src/Unit/ElementTest.php \Drupal\Tests\lightning_core\Unit\ElementTest
  2. 8 tests/src/Unit/ElementTest.php \Drupal\Tests\lightning_core\Unit\ElementTest
  3. 8.3 tests/src/Unit/ElementTest.php \Drupal\Tests\lightning_core\Unit\ElementTest
  4. 8.4 tests/src/Unit/ElementTest.php \Drupal\Tests\lightning_core\Unit\ElementTest

@coversDefaultClass \Drupal\lightning_core\Element

@group lightning_core @group lightning

Hierarchy

Expanded class hierarchy of ElementTest

File

tests/src/Unit/ElementTest.php, line 14

Namespace

Drupal\Tests\lightning_core\Unit
View source
class ElementTest extends UnitTestCase {

  /**
   * @covers ::oxford
   */
  public function testOxford() {
    $this
      ->assertSame('foo, bar, and baz', Element::oxford([
      'foo',
      'bar',
      'baz',
    ]));
    $this
      ->assertSame('foo and bar', Element::oxford([
      'foo',
      'bar',
    ]));
    $this
      ->assertSame('foo', Element::oxford([
      'foo',
    ]));
    $this
      ->assertEmpty(Element::oxford([]));
    $this
      ->assertSame('Larry, Moe, or Curly', Element::oxford([
      'Larry',
      'Moe',
      'Curly',
    ], 'or'));
  }

  /**
   * @covers ::toTail
   */
  public function testToTail() {
    $items = [
      'here',
      'everywhere',
      'there',
    ];
    $items = array_combine($items, $items);
    Element::toTail($items, 'everywhere');
    $this
      ->assertSame([
      'here',
      'there',
      'everywhere',
    ], array_keys($items));
  }

  /**
   * @covers ::order
   */
  public function testOrder() {
    $items = [
      'apple' => 1,
      'orange' => 2,
      'banana' => 3,
    ];
    Element::order($items, [
      'banana',
      'apple',
      'orange',
    ]);
    $this
      ->assertSame([
      'banana',
      'apple',
      'orange',
    ], array_keys($items));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ElementTest::testOrder public function @covers ::order
ElementTest::testOxford public function @covers ::oxford
ElementTest::testToTail public function @covers ::toTail
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUp protected function 340