Note: I have tested this in PHPUnit 3.4.1 and haven’t tried it out in 3.5. Anyone who has worked with…
Tag: unit testing
tekx – continuous inspection and integration of PHP projects
“Countinous Integration is about preventing your developers from burning in Integration Hell” – @s_bergmann Integration Hell My code is perfect,…
“Countinous Integration is about preventing your developers from burning in Integration Hell” – @s_bergmann
Integration Hell
My code is perfect, yours is pretty good and then Martin…well, he’s a fucking idiot. (lost where he was going with this story). D=
Team member should integrate their work frequently. This reduces errors when managing multiple team members. The value (ROI) is in:
- reducing risk
- reduce repetitive processes
- generate deployable software
- enable better project visibility
- establish greater product confidence
- helps with late discovery of defects
- regression testing
- test coverage
- prevents low quality software
- coding standard adherance
- prevents lack of deployable software
This practice focuses on software design that uses unit tests to prevent and detect defects. This all significantly works to provide significantly better quality software.
headers exception with Zend_Session while unit testing
While the manual for Zend_Session does discuss unit testing and the read-only exception, it has no mention of an exception…