Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 4 additions & 10 deletions tests/Functional/Parameters/UriVariableParameterProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ public static function getResources(): array

protected function setUp(): void
{
if ('mongodb' === static::getContainer()->getParameter('kernel.environment')) {
$this->markTestSkipped();
}

$this->recreateSchema([Base64UriVariableDummy::class, Dummy::class]);
}

Expand All @@ -45,11 +49,6 @@ protected function setUp(): void
*/
public function testLinkParameterProviderDecodesUriVariableBeforeQuery(): void
{
$container = static::getContainer();
if ('mongodb' === $container->getParameter('kernel.environment')) {
$this->markTestSkipped();
}

$manager = $this->getManager();
$dummy = new Base64UriVariableDummy();
$dummy->name = 'Blip';
Expand All @@ -63,11 +62,6 @@ public function testLinkParameterProviderDecodesUriVariableBeforeQuery(): void

public function testReadLinkParameterProviderWritesResolvedResourceWhenOptedIn(): void
{
$container = static::getContainer();
if ('mongodb' === $container->getParameter('kernel.environment')) {
$this->markTestSkipped();
}

$manager = $this->getManager();
$dummy = new Dummy();
$dummy->setName('hi');
Expand Down
Loading