| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function testTruncate(): void |
||
| 25 | { |
||
| 26 | $client = new KernelBrowser(new AppKernel()); |
||
| 27 | $client->request(Request::METHOD_GET, '/u_truncate_test'); |
||
| 28 | |||
| 29 | $this->assertSame(Response::HTTP_OK, $client->getResponse()->getStatusCode()); |
||
| 30 | $this->assertSame('test', $client->getResponse()->getContent()); |
||
| 31 | } |
||
| 32 | } |
||
| 33 |