コード例 #1
0
ファイル: PasswordTest.php プロジェクト: gudwin/extasy-users
 public function testValueHashed()
 {
     $fixture = 123;
     $column = new Password('test', ['hash' => 777], null);
     $column->setValue($fixture);
     $this->assertNotEquals($fixture, $column->getValue());
 }