↧
Answer by inf3rno for How can I speed up my PHPUnit + DBUnit test suite...
The fixture creation in DbUnit is extremely slow. It takes 1.5 sec every time with core2duo e8400 4gb kingston 1333. You can find the bottleneck with xdebug and fix it (if you can), or you can do one...
View ArticleAnswer by Will Morgan for How can I speed up my PHPUnit + DBUnit test suite...
Upon Googling I've managed to reduce the time it takes from 10 minutes down to 1 minute. It turns out that changing some InnoDB configuration settings in my.ini/my.cnf will help.Setting...
View ArticleHow can I speed up my PHPUnit + DBUnit test suite execution?
I'm running in to some real speed issues with PHPUnit/DBUnit. Anything that extends PHPUnit_Extensions_Database_TestCase takes forever to run. With 189 tests, the suite takes around 8-9 minutes. I was...
View Article