You are here

public function ConfigEntityTypeTest::testGetPropertiesToExportNoFallback in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Config/Entity/ConfigEntityTypeTest.php \Drupal\Tests\Core\Config\Entity\ConfigEntityTypeTest::testGetPropertiesToExportNoFallback()

@covers ::getPropertiesToExport

File

core/tests/Drupal/Tests/Core/Config/Entity/ConfigEntityTypeTest.php, line 213

Class

ConfigEntityTypeTest
@coversDefaultClass \Drupal\Core\Config\Entity\ConfigEntityType @group Config

Namespace

Drupal\Tests\Core\Config\Entity

Code

public function testGetPropertiesToExportNoFallback() {
  $config_entity_type = new ConfigEntityType([
    'id' => 'example_config_entity_type',
  ]);
  $this
    ->assertNull($config_entity_type
    ->getPropertiesToExport());
}