Files
farmOS-dev/web/modules/migrate_plus/tests/src/Kernel/MigrateTableIncrementEvenBatchTest.php
2024-12-10 15:08:16 +01:00

22 lines
364 B
PHP
Executable File

<?php
declare(strict_types = 1);
namespace Drupal\Tests\migrate_plus\Kernel;
/**
* Verifies all tests pass with batching enabled, even batches.
*
* @group migrate
*/
final class MigrateTableIncrementEvenBatchTest extends MigrateTableIncrementTest {
/**
* The batch size to configure.
*
* @var int
*/
protected static int $batchSize = 3;
}