public function testIsValidWithMinimalSetup()
 {
     $this->request->setListId(1);
     $this->request->setEmail('*****@*****.**');
     $this->assertTrue($this->request->isValid());
     // should not throw exception
     $this->request->freeze();
 }