Ben sadece Zend Framework ile PHP Ünitesi kullanarak başladım ve ben memory_limit ile ilgili bir sorun var. Şu anda, bellek sınırı 32M ayarlanır ve tüm testleri çalıştırırken ben bir ölümcül hata alıyorum edilir:
Allowed memory size of 33554432 bytes exhausted.
Currently, I have: 7 files, 125 tests, 332 assertions. I only test the controllers. I use @dataProvider for some tests, with the 1 to 5 sets of data (at first I was reading them from file, I've tried to put the data directly in the tests files, but it still hits the memory limit)
So my question is what is your usual memory limit for phpunit based testing? Where should I look to improve the memory testing? Any advice will be great.
Thanks, Gabriel