userController = new UserController(); } public function testLogout(): void { $this->assertEquals(true, $this->userController->logout()->isSuccessful()); } public function testLogin(): void { $this->assertEquals(true, $this->userController->login()->isSuccessful()); } public function testRegister():void { $this->assertEquals(true, $this->userController->register()->isSuccessful()); } }