Skip to content

Commit 51f6f32

Browse files
committed
test case
1 parent dc75db4 commit 51f6f32

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace ApiPlatform\Core\Tests\Test;
6+
7+
use ApiPlatform\Core\Bridge\Symfony\Bundle\Test\ApiTestCase;
8+
use ApiPlatform\Core\Bridge\Symfony\Bundle\Test\Client;
9+
use ApiPlatform\Core\Bridge\Symfony\Routing\Router;
10+
use App\Entity\Book;
11+
use Symfony\Component\HttpFoundation\Response;
12+
use Symfony\Contracts\Service\ServiceProviderInterface;
13+
14+
class BookTestDeprecatedClient extends ApiTestCase
15+
{
16+
private Client $client;
17+
private Router $router;
18+
19+
protected function setup(): void
20+
{
21+
$this->client = static::createClient();
22+
}
23+
24+
public function testWorks(): void
25+
{
26+
$this->assertTrue(true);
27+
}
28+
}
29+

0 commit comments

Comments
 (0)