You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We used the dev-master branch in PHPUnit 7 and saw an increase in performance and would like to know if there are any planned releases. We previously used PHPUnit 5.7 and are upgrading to PHPUnit 7 and would like to have this package available for use.
The text was updated successfully, but these errors were encountered:
With the accelerator: 7-8 minutes using roughly 325mb memory
without accelerator: 15-17 minutes, 1.34gb memory
Our functional tests benefited the most from the accelerator.
As PHPUnit destructs instances of the test classes only at the end of the complete test process the accelerator should still make sense if the test classes have no tearDown() that sets the properties to null -- at least in regard to memory consumption.
Since we have implementations of tearDown() that set properties to null that use the most memory the improvement with the accelerator in regard to memory is only 10 MB (ca. 700 vs 710), while the execution time is slightly increased probably because of the listener code that is executed after every test.
Hello @gavinlove ,
We used the dev-master branch in PHPUnit 7 and saw an increase in performance and would like to know if there are any planned releases. We previously used PHPUnit 5.7 and are upgrading to PHPUnit 7 and would like to have this package available for use.
The text was updated successfully, but these errors were encountered: