function CronTest::processQueuesTestData
Data provider for ::testProcessQueues() method.
File
- 
              core/
tests/ Drupal/ Tests/ Core/ CronTest.php, line 179  
Class
- CronTest
 - Tests the Cron class.
 
Namespace
Drupal\Tests\CoreCode
public static function processQueuesTestData() {
  return [
    [
      'Complete',
      'assertFalse',
      0,
    ],
    [
      'Exception',
      'assertTrue',
      1,
    ],
    [
      'DelayedRequeueException',
      'assertFalse',
      1,
    ],
    [
      'SuspendQueueException',
      'assertTrue',
      1,
    ],
    [
      'RequeueException',
      'assertFalse',
      0,
    ],
  ];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.