public function CronTest::processQueuesTestData in Drupal 9
Data provider for ::testProcessQueues() method.
File
- core/
tests/ Drupal/ Tests/ Core/ CronTest.php, line 164
Class
- CronTest
- Tests the Cron class.
Namespace
Drupal\Tests\CoreCode
public function processQueuesTestData() {
return [
[
'Complete',
'assertFalse',
0,
],
[
'Exception',
'assertTrue',
1,
],
[
'DelayedRequeueException',
'assertFalse',
1,
],
[
'SuspendQueueException',
'assertTrue',
1,
],
[
'RequeueException',
'assertFalse',
0,
],
];
}