tracking/Tests/Functional/Fixtures/SysCategories.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

52 lines
1 KiB
PHP

<?php
return [
'sys_category' => [
[
'uid' => '1',
'title' => 'Category 1',
],
[
'uid' => '11',
'title' => 'Kategorie 1',
'l10n_parent' => '1',
'sys_language_uid' => '1',
],
[
'uid' => '2',
'title' => 'Category 2',
],
[
'uid' => '3',
'title' => 'Category 3',
],
[
'uid' => '4',
'title' => 'Category 4',
],
[
'uid' => '5',
'title' => 'Category 5',
],
[
'uid' => '6',
'title' => 'Category 6',
],
[
'uid' => '7',
'title' => 'Category 7',
],
[
'uid' => '8',
'title' => 'Category 8',
],
[
'uid' => '9',
'title' => 'Category 9',
],
[
'uid' => '10',
'title' => 'Category 10',
],
],
];