tracking/Tests/Functional/Fixtures/Pages.php
Daniel Siepmann 38a2be296a Migrate test fixtures to PHP Data Sets
That will ease maintenance.
XML is no longer supported by TYPO3 Testing Framework.

Resolves: #109
2023-05-11 15:16:43 +02:00

64 lines
1.3 KiB
PHP

<?php
return [
'pages' => [
[
'pid' => '0',
'uid' => '1',
'title' => 'Page 1',
'slug' => '/',
],
[
'pid' => '1',
'uid' => '11',
'title' => 'Seite 1',
'l10n_parent' => '1',
'sys_language_uid' => '1',
],
[
'pid' => '1',
'uid' => '2',
'title' => 'Page 2',
],
[
'pid' => '1',
'uid' => '3',
'title' => 'Page 3',
],
[
'pid' => '1',
'uid' => '4',
'title' => 'Page 4',
],
[
'pid' => '1',
'uid' => '5',
'title' => 'Page 5',
],
[
'pid' => '1',
'uid' => '6',
'title' => 'Page 6',
],
[
'pid' => '1',
'uid' => '7',
'title' => 'Page 7',
],
[
'pid' => '1',
'uid' => '8',
'title' => 'Page 8',
],
[
'pid' => '1',
'uid' => '9',
'title' => 'Page 9',
],
[
'pid' => '1',
'uid' => '10',
'title' => 'Page 10',
],
],
];