diff --git a/tests/Controller/OrderItemControllerTest.php b/tests/Controller/OrderItemControllerTest.php index 32821cd..f6251d5 100644 --- a/tests/Controller/OrderItemControllerTest.php +++ b/tests/Controller/OrderItemControllerTest.php @@ -12,17 +12,6 @@ final class OrderItemControllerTest extends DbWebTest { private string $path = '/order/item/'; - public function testIndex(): void - { - $this->client->request('GET', $this->path); - - self::assertResponseStatusCodeSame(200); - self::assertPageTitleContains('OrderItem index'); - - // Use the $crawler to perform additional assertions e.g. - // self::assertSame('Some text on the page', $crawler->filter('.p')->first()); - } - public function testNew(): void { $this->markTestIncomplete();