public function ConfigEntityImportWithLocalNullUuidTest::testNodeConfigEntity in Acquia Content Hub 8.2
Tests View Configuration Entity import/export.
@dataProvider nodeConfigEntityDataProvider
Parameters
mixed $args: Arguments. @see ImportExportTestBase::contentEntityImportExport() for the details.
Throws
\Exception
File
- tests/
src/ Kernel/ ConfigEntityImportWithLocalNullUuidTest.php, line 73
Class
- ConfigEntityImportWithLocalNullUuidTest
- Class ConfigEntityImportWithLocalNullUuid.
Namespace
Drupal\Tests\acquia_contenthub\KernelCode
public function testNodeConfigEntity(...$args) {
$config = \Drupal::configFactory()
->getEditable('node.type.page');
$config
->set('uuid', NULL);
$config
->save();
parent::configEntityImportExport(...$args);
}