You are here

public function FeaturesManagerTest::providerTestGetFullName in Features 8.4

Same name and namespace in other branches
  1. 8.3 tests/src/Unit/FeaturesManagerTest.php \Drupal\Tests\features\Unit\FeaturesManagerTest::providerTestGetFullName()

Data provider for ::testGetFullName().

File

tests/src/Unit/FeaturesManagerTest.php, line 214

Class

FeaturesManagerTest
@coversDefaultClass Drupal\features\FeaturesManager @group features

Namespace

Drupal\Tests\features\Unit

Code

public function providerTestGetFullName() {
  return [
    [
      NULL,
      'name',
      'name',
    ],
    [
      FeaturesManagerInterface::SYSTEM_SIMPLE_CONFIG,
      'name',
      'name',
    ],
    [
      'custom',
      'name',
      'custom.name',
    ],
  ];
}