public function MigrateSqlIdMapTest::updateCountDataProvider in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/migrate/tests/src/Unit/MigrateSqlIdMapTest.php \Drupal\Tests\migrate\Unit\MigrateSqlIdMapTest::updateCountDataProvider()
Data provider for testUpdateCount().
Scenarios to test for:
- No updates.
- One update.
- Multiple updates.
File
- core/
modules/ migrate/ tests/ src/ Unit/ MigrateSqlIdMapTest.php, line 560 - Contains \Drupal\Tests\migrate\Unit\MigrateSqlIdMapTest.
Class
- MigrateSqlIdMapTest
- Tests the SQL ID map plugin.
Namespace
Drupal\Tests\migrate\UnitCode
public function updateCountDataProvider() {
return [
[
0,
],
[
1,
],
[
3,
],
];
}