2 namespace TYPO3\CMS\Backend\Tests\Unit\Form\FormDataProvider;
17 use TYPO3\CMS\Core\Tests\UnitTestCase;
42 'tableName' =>
'pages',
48 $expected[
'effectivePid'] = 123;
49 $this->assertSame($expected, $this->subject->addData($input));
59 'tableName' =>
'tt_content',
65 $expected[
'effectivePid'] = 123;
66 $this->assertSame($expected, $this->subject->addData($input));
76 'tableName' =>
'tt_content',
82 $expected[
'effectivePid'] = 123;
83 $this->assertSame($expected, $this->subject->addData($input));
93 'tableName' =>
'pages',
94 'parentPageRow' => null,
97 $expected[
'effectivePid'] = 0;
98 $this->assertSame($expected, $this->subject->addData($input));