Exemplo n.º 1
0
 public function testEncrypt()
 {
     $data = 'data';
     $encryptedData = 'd1a2t3a4';
     $this->encryptorInterfaceMock->expects($this->once())->method('encrypt')->with($data)->will($this->returnValue($encryptedData));
     $this->assertEquals($encryptedData, $this->info->encrypt($data));
 }