userUriFixture= 'test'; $this->subject = new UserRemovedEvent($this->userUriFixture); } public function testSerializeForWebhook(): void { $this->assertSame( [ 'userId' => $this->userUriFixture, ], $this->subject->serializeForWebhook() ); } public function testGetWebhookEventName(): void { $this->assertSame( 'user-removed', $this->subject->getWebhookEventName() ); } }