コード例 #1
0
ファイル: CryptServiceTest.php プロジェクト: jeboehm/lampcp
 /**
  * Test data encryption.
  */
 public function testEncrypt()
 {
     $result = $this->_cs->encrypt('randomdata');
     $this->assertNotEquals('randomdata', $result);
     return $result;
 }