function StubTestTrait::performStubTest

Same name and namespace in other branches
  1. 11.x core/modules/migrate_drupal/src/Tests/StubTestTrait.php \Drupal\migrate_drupal\Tests\StubTestTrait::performStubTest()

Tests that creating a stub of an entity type results in a valid entity.

Parameters

string $entity_type_id: The entity type we are stubbing.

1 call to StubTestTrait::performStubTest()
MigrateFileStubTest::testStub in core/modules/file/tests/src/Kernel/Migrate/MigrateFileStubTest.php
Tests creation of file stubs.

File

core/modules/migrate_drupal/src/Tests/StubTestTrait.php, line 18

Class

StubTestTrait
Provides common functionality for testing stubbing.

Namespace

Drupal\migrate_drupal\Tests

Code

protected function performStubTest($entity_type_id) {
  $entity_id = $this->createEntityStub($entity_type_id);
  $this->assertNotEmpty($entity_id, 'Stub successfully created');
  // When validateStub fails, it will return an array with the violations.
  $this->assertEmpty($this->validateStub($entity_type_id, $entity_id));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.