From 348740f073c323749de227f0a97db6a20f0874e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Mon, 3 Jun 2024 13:22:46 +0200 Subject: [PATCH] Add TicketListController test A new file, TicketListControllerTest.php, has been added to the test suite. This file includes tests to ensure that the TicketList controller is working as expected, including checking the successful response of the 'GET' request. --- .../Controller/TicketListControllerTest.php | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/Bundle/ChillTicketBundle/tests/Chill/TicketBundle/Controller/TicketListControllerTest.php diff --git a/src/Bundle/ChillTicketBundle/tests/Chill/TicketBundle/Controller/TicketListControllerTest.php b/src/Bundle/ChillTicketBundle/tests/Chill/TicketBundle/Controller/TicketListControllerTest.php new file mode 100644 index 000000000..a7a1db425 --- /dev/null +++ b/src/Bundle/ChillTicketBundle/tests/Chill/TicketBundle/Controller/TicketListControllerTest.php @@ -0,0 +1,20 @@ +getClientAuthenticated(); + + $client->request('GET', '/fr/ticket/ticket/list'); + + self::assertResponseIsSuccessful(); + } +}