You are here

public function SimplesitemapTest::generationResumeProvider in Simple XML sitemap 4.x

Same name and namespace in other branches
  1. 8.3 tests/src/Functional/SimplesitemapTest.php \Drupal\Tests\simple_sitemap\Functional\SimplesitemapTest::generationResumeProvider()

Test cases for ::testGenerationResume.

File

tests/src/Functional/SimplesitemapTest.php, line 605

Class

SimplesitemapTest
Tests Simple XML Sitemap functional integration.

Namespace

Drupal\Tests\simple_sitemap\Functional

Code

public function generationResumeProvider() {
  return [
    [
      1000,
      500,
      1,
    ],
    [
      1000,
      500,
      3,
      [
        'de',
      ],
    ],
    [
      1000,
      500,
      5,
      [
        'de',
        'es',
      ],
    ],
    [
      10,
      10000,
      10,
    ],
  ];
}