mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-04 15:24:07 +01:00
11 lines
254 B
PHP
11 lines
254 B
PHP
<?php
|
|
class CPasswordHelperTest extends CTestCase
|
|
{
|
|
public function testHashAndVerifyPassword()
|
|
{
|
|
$password = 'test123';
|
|
$hash = CPasswordHelper::hashPassword($password);
|
|
$this->assertTrue(CPasswordHelper::verifyPassword($password, $hash));
|
|
}
|
|
}
|