We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc75db4 commit 51f6f32Copy full SHA for 51f6f32
tests/Core/Test/BookTestDeprecatedClient.php
@@ -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