From b357aafa7f6009e8541b0e6758b8c21347b8e38d Mon Sep 17 00:00:00 2001 From: darthmaim Date: Wed, 7 Feb 2024 13:30:49 +0100 Subject: [PATCH] Set `error_reporting(E_ALL)` in tests --- tests/BasicTestCase.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/BasicTestCase.php b/tests/BasicTestCase.php index 322570d..4ed9090 100644 --- a/tests/BasicTestCase.php +++ b/tests/BasicTestCase.php @@ -17,6 +17,8 @@ use Psr\Http\Message\RequestInterface; use PHPUnit\Framework\TestCase; +error_reporting(E_ALL); + abstract class BasicTestCase extends TestCase { /** @var GW2Api $api */ protected $api;