test_support-1.0.x-dev/tests/src/Traits/Support/InteractsWithBatches.php
tests/src/Traits/Support/InteractsWithBatches.php
<?php
namespace Drupal\Tests\test_support\Traits\Support;
trait InteractsWithBatches
{
public function runLatestBatch(string $redirect = '/'): self
{
$batch = &batch_get();
$batch['progressive'] = false;
batch_process($redirect);
return $this;
}
}
