From d25cdd7b1e42886b34e256ebdb605a2d8cb85249 Mon Sep 17 00:00:00 2001 From: Dave Smith-Hayes Date: Sat, 15 Jun 2024 23:10:49 -0400 Subject: [PATCH] Add a setup for each test. --- app/tests/Controller/User/RegisterUserActionTest.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/tests/Controller/User/RegisterUserActionTest.php b/app/tests/Controller/User/RegisterUserActionTest.php index 18c5db3..cafd73b 100644 --- a/app/tests/Controller/User/RegisterUserActionTest.php +++ b/app/tests/Controller/User/RegisterUserActionTest.php @@ -43,6 +43,15 @@ class RegisterUserActionTest extends TestCase ]); } + + /** + * Set up the Application, the DI Container, and the Repository mock + */ + protected function setUp(): void + { + + } + public function testSuccessfulRegistration(): void { $user = $this->getUser();