From bc9c8f02a9d33693478ef75211362a6b7ba603c5 Mon Sep 17 00:00:00 2001 From: Kevin Frantz Date: Sat, 5 Jan 2019 19:03:08 +0100 Subject: [PATCH] Added GET test for create function --- .../Controller/API/ApiUrlReachableIntegrationTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/tests/Integration/Controller/API/ApiUrlReachableIntegrationTest.php b/application/tests/Integration/Controller/API/ApiUrlReachableIntegrationTest.php index 58ab7fd..9c8ce51 100644 --- a/application/tests/Integration/Controller/API/ApiUrlReachableIntegrationTest.php +++ b/application/tests/Integration/Controller/API/ApiUrlReachableIntegrationTest.php @@ -29,6 +29,7 @@ class ApiUrlReachableIntegrationTest extends KernelTestCase private function controller(string $entity) { + $this->language($entity, Request::METHOD_GET); $this->language($entity, Request::METHOD_POST); $this->language($entity.'s', Request::METHOD_GET); $this->slugAndId($entity, Request::METHOD_PUT);