Eccube\Tests\Repository\CustomerRepositoryTest::testEncryptPassword PHP Метод

testEncryptPassword() публичный Метод

public testEncryptPassword ( )
    public function testEncryptPassword()
    {
        $Customer = $this->app['eccube.repository.customer']->loadUserByUsername($this->email);
        $this->expected = $Customer->getPassword();
        $Customer->setPassword('password');
        $this->actual = $this->app['eccube.repository.customer']->encryptPassword($this->app, $Customer);
        $this->verify();
    }