generate(6); $this->assertNotEmpty($value); $this->assertTrue($service->verify($value)); } public function test_verify_and_clear(): void { $service = new RegistrationCaptchaService; $value = $service->generate(6); $this->assertTrue($service->verify($value)); $this->assertFalse($service->verify('WRONG')); $service->clear(); $this->assertFalse($service->verify($value)); } }