Example #1
0
 /**
  * @test
  */
 public function getReplytoEmail()
 {
     $this->assertSame('*****@*****.**', $this->subject->getReplytoEmail(), 'sould return globally configured default value');
     $this->subject->setReplytoEmail('*****@*****.**');
     $this->assertSame('*****@*****.**', $this->subject->getReplytoEmail(), 'sould return locally set value');
 }