public function testRegistrationSendsEmail(): void {
$mailer = $this->createMock(MailerInterface::class);
$mailer->expects($this->once())
->method("send")
->with(
$this->equalTo("alice@example.com"),
$this->stringContains("Welcome")
);
$service = new RegistrationService($mailer);
$service->register("Alice", "alice@example.com");
}