Issue Type: Coding Standards Violation Created: 2012-02-23T22:49:21.000+0000 Last Updated: 2012-02-25T08:27:43.000+0000 Status: Resolved Fix version(s): Reporter: Maks 3w (maks3w) Assignee: Maks 3w (maks3w) Tags: - Zend\Ldap
Related issues: Attachments:
There are wrong package references inside the code and tests.
For example: $this->assertEquals("Unknown Zend_LDAP option: $optionName", $e->getMessage()); should be: $this->assertEquals("Unknown Zend_Ldap option: $optionName", $e-
getMessage());
Actually some unit tests are failing by this reason.
Posted by Maks 3w (maks3w) on 2012-02-24T08:10:11.000+0000
I will try to fix this.
Seems to be very outdated tests too.
Posted by Maks 3w (maks3w) on 2012-02-24T14:14:25.000+0000
Fix testInvalidOptionResultsInException() fail because classname was wrong.
Fix all PHP Fatal error: Call to undefined method ZendTest\Ldap****Test::assertType()
Change old Zend_LDAP references to Zend_Ldap, also some typo on classnames like Zenda_Ldap was fixed too.
Pull request #826: https://github.com/zendframework/zf2/pull/826
Posted by Maks 3w (maks3w) on 2012-02-25T08:27:43.000+0000
Changes have been merged to zf2 master branch