/**
* {@inheritdoc}
*/
protected function setUp(): void
{ parent::
setUp();
$this->section =
new Section( 'layout_onecol',
[],
[ new SectionComponent('existing-uuid', 'some-region',
['id' => 'existing-block-id'
]),
(new SectionComponent('20000000-0000-1000-a000-000000000000', 'ordered-region',
['id' => 'second-block-id'
]))->
setWeight(3
),
(new SectionComponent('10000000-0000-1000-a000-000000000000', 'ordered-region',
['id' => 'first-block-id'
]))->
setWeight(2
),
],
[ 'bad_judgement' =>
['blink_speed' => 'fast', 'spin_direction' => 'clockwise'
],
'hunt_and_peck' =>
['delay' => '300ms'
],
] );
} /**
* @covers ::__construct
* @covers ::setComponent
* @covers ::getComponents
*/