예제 #1
0
 protected function setUp()
 {
     parent::setUp();
     $this->user = new User();
     $this->user->setEmail('*****@*****.**')->setPlainPassword('TestPassword');
     $this->mailProcessor = new Processor($this->managerRegistry, $this->configManager, $this->renderer, $this->emailHolderHelper, $this->mailer);
 }
예제 #2
0
 protected function setUp()
 {
     parent::setUp();
     $this->user = new AccountUser();
     $this->user->setEmail('*****@*****.**')->setPlainPassword(self::PASSWORD)->setConfirmationToken($this->user->generateToken());
     $this->mailProcessor = new Processor($this->managerRegistry, $this->configManager, $this->renderer, $this->emailHolderHelper, $this->mailer);
 }
예제 #3
0
 protected function setUp()
 {
     parent::setUp();
     $this->request = new Request();
     $this->user = new User();
     $this->user->setEmail('*****@*****.**');
     $this->mailProcessor = new Processor($this->managerRegistry, $this->configManager, $this->renderer, $this->emailHolderHelper, $this->mailer);
 }