public function SimplesitemapTest::generationResumeProvider in Simple XML sitemap 4.x
Same name and namespace in other branches
- 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\FunctionalCode
public function generationResumeProvider() {
return [
[
1000,
500,
1,
],
[
1000,
500,
3,
[
'de',
],
],
[
1000,
500,
5,
[
'de',
'es',
],
],
[
10,
10000,
10,
],
];
}