public function FieldCollectionItemRevisionSourceTest::providerSource in Paragraphs 8
The data provider.
Return value
array Array of data sets to test, each of which is a numerically indexed array with the following elements:
- An array of source data, which can be optionally processed and set up by subclasses.
- An array of expected result rows.
- (optional) The number of result rows the plugin under test is expected to return. If this is not a numeric value, the plugin will not be counted.
- (optional) Array of configuration options for the plugin under test.
Overrides MigrateSourceTestBase::providerSource
See also
\Drupal\Tests\migrate\Kernel\MigrateSourceTestBase::testSource
File
- tests/
src/ Kernel/ migrate/ FieldCollectionItemRevisionSourceTest.php, line 25
Class
- FieldCollectionItemRevisionSourceTest
- Test the field_collection_item_revision source plugin.
Namespace
Drupal\Tests\paragraphs\Kernel\migrateCode
public function providerSource() {
$data = $this
->getSourceData();
$data[0]['expected_results'] = [
[
'item_id' => '2',
'revision_id' => '2',
'field_name' => 'field_field_collection_field',
'bundle' => 'field_collection_field',
'archived' => '0',
'field_text' => [
0 => [
'value' => 'FCID2R2 text',
],
],
],
];
return $data;
}