function BrowserTestBaseTest::testCronRun
Tests the ::cronRun() method.
File
- 
              core/tests/ Drupal/ FunctionalTests/ BrowserTestBaseTest.php, line 748 
Class
- BrowserTestBaseTest
- Tests BrowserTestBase functionality.
Namespace
Drupal\FunctionalTestsCode
public function testCronRun() {
  $last_cron_time = \Drupal::state()->get('system.cron_last');
  $this->cronRun();
  $this->assertSession()
    ->statusCodeEquals(204);
  $next_cron_time = \Drupal::state()->get('system.cron_last');
  $this->assertGreaterThan($last_cron_time, $next_cron_time);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
