public function FieldUiTest::testGetNextDestinationEmpty in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/field_ui/tests/src/Unit/FieldUiTest.php \Drupal\Tests\field_ui\Unit\FieldUiTest::testGetNextDestinationEmpty()
@covers ::getNextDestination
File
- core/
modules/ field_ui/ tests/ src/ Unit/ FieldUiTest.php, line 57 - Contains \Drupal\Tests\field_ui\Unit\FieldUiTest.
Class
- FieldUiTest
- @coversDefaultClass \Drupal\field_ui\FieldUI
Namespace
Drupal\Tests\field_ui\UnitCode
public function testGetNextDestinationEmpty() {
$destinations = [];
$actual = FieldUI::getNextDestination($destinations);
$this
->assertNull($actual);
}