Skip to content

Commit

Permalink
chore: symfony dev tests
Browse files Browse the repository at this point in the history
  • Loading branch information
soyuka committed Nov 18, 2024
1 parent f251ed1 commit 71fbd76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\Tools\SchemaTool;

class JsonLd extends ApiTestCase
class JsonLdTest extends ApiTestCase
{
/**
* The input DTO denormalizes an existing Doctrine entity.
*/
public function testIssue6465(): void
{
$this->markTestSkipped();
$container = static::getContainer();

Check failure on line 30 in tests/Functional/JsonLdTest.php

View workflow job for this annotation

GitHub Actions / PHPStan (PHP 8.3)

Unreachable statement - code above always terminates.
if ('mongodb' === $container->getParameter('kernel.environment')) {
$this->markTestSkipped();
Expand Down
1 change: 1 addition & 0 deletions tests/Symfony/Routing/RouterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ public function testMatchWithInvalidContext(): void

$mockedRouter = $this->prophesize(RouterInterface::class);
$mockedRouter->getContext()->willReturn($context)->shouldBeCalled();
$mockedRouter->match('28-01-2018 10:10')->willReturn([]);

$router = new Router($mockedRouter->reveal());
$router->match('28-01-2018 10:10');
Expand Down

0 comments on commit 71fbd76

Please sign in to comment.