use Shopware\Storefront\Theme\CompilerConfiguration;
/**
* @internal
*
* @covers \Shopware\Storefront\Theme\CompilerConfiguration
*/
class CompilerConfigurationTest extends TestCase
{ public function testGetNotSetValue(): void
{ $config =
new CompilerConfiguration([]);
static::
assertNull($config->
getValue('test'
));
} public function testGetSetValue(): void
{ $config =
new CompilerConfiguration([ 'test' => 'value',
]);
static::
assertEquals('value',
$config->
getValue('test'
));
}