use Symfony\Component\Notifier\Notifier;
use Symfony\Component\RateLimiter\Policy\TokenBucketLimiter;
use Symfony\Component\Scheduler\Messenger\SchedulerTransportFactory;
use Symfony\Component\Serializer\Encoder\JsonDecode;
use Symfony\Component\Uid\Factory\UuidFactory;
class ConfigurationTest extends TestCase
{ public function testDefaultConfig() { $processor =
new Processor();
$config =
$processor->
processConfiguration(new Configuration(true
),
[[ 'http_method_override' => false,
'handle_all_throwables' => true,
'php_errors' =>
['log' => true
],
'secret' => 's3cr3t',
'serializer' =>
['default_context' =>
['foo' => 'bar'
]],
]]);
$this->
assertEquals(self::
getBundleDefaultConfig(),
$config);
} public function getTestValidSessionName() {