Paraunit 2.3.2: fix files recap

This is a republished tag announcement for facile-it/paraunit. You can find the release here.

I noticed that, since Paraunit 2, the recap at the end of the execution got very long. This was due to an improper serialization of the logs, where the test name was treated as a generic Test value object instead of a specific TestMethod one, where the class name is shown split form the method name.

This had the unintended consequence of not deduplicating the list of files which are printed at the end of Paraunit’s execution, so in case an error or failure was repeated many times (i.e. with a data provider) inside the same test class, the test recap would get very long.

This patch includes a fix for this, and also a small addition that shows the PHPUnit version in use.

This is the full changelog

  • Add PHPUnit version info #213
  • Deduplicate correctly the test files recap at the end of the execution #241