public function testValidatePropsValid(array
$context, string
$component_id, array
$definition): void
{ $component =
new Component( ['app_root' => '/fake/path/root'
],
'sdc_test:' .
$component_id,
$definition );
$component_validator =
new ComponentValidator();
$component_validator->
setValidator();
$this->
assertTrue( $component_validator->
validateProps($context,
$component),
'The valid component props threw an error.'
);
} /**
* Data provider with valid component props.
*
* @return array
* The data.
*/
public static function dataProviderValidatePropsValid(): array
{