How to run PHPUnit test suite with bootstrap file with phing? My app structure: application/ library/ tests/
We\'re currently having issues with memory leaks when using unit tests with Symfony 1.x to the magnitude of a decent number of tests eating 512MB of memory.
I try to write test for controller. I use OS Windows, zend framework and my libraries are in C:/library which is added to the include_path of php.ini.
I am working on a ZF project wich use a postgre database, on my local server (ubuntu 10.04 LTS Lucid Lynx).
When an error that the PHPunit framework does not expect to occur happens, the testing stops, and PHP throws the error, but PHPuni开发者_运维百科t does not record that it was an error.How do I make su
This one\'s got me stumped. I\'ve been working with PHPUnit for a couple of months now, so I\'m not that green...but I look forward to being pointed in the direction of the obvious mistake I\'m making
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting a开发者_如何学运维nswers.
I\'m trying to use PHPUnit to unit test some class methods that return SQL. These classes should work with any Zend_Db adapter, so I would like the tests to do the same. My tests look a little like th
I wanted to write unit tests for my Zend Framework/Doctrine 2.0 application, but I don\'t quite understand how to set up unit testing in ZF. Also, I would like to include Doctrine 2.0 in those unit te
Does anyone here use Zend Framework, ZFDoctrine and PHPUnit together? How to rebuild the database on each test run?