We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When dataprovider contains binary file contents, if the test fails, the whole contents will be output to stdout, which make the result unreadable.
In my case:
public function dataProvider() { $contents = file_get_contents('xxx.png'); return [ [$contents], ]; }
the output is
XXXmethod with data set #0 (// huge amount of binary data...) Failed asserting xxx
Is there a way to prevent it?
Thanks!
The text was updated successfully, but these errors were encountered:
1807fae
Sorry for the inconvenience, @coldume. This should be fixed when 4.4 is released.
Sorry, something went wrong.
whatthejeff
No branches or pull requests
When dataprovider contains binary file contents, if the test fails, the whole contents will
be output to stdout, which make the result unreadable.
In my case:
the output is
Is there a way to prevent it?
Thanks!
The text was updated successfully, but these errors were encountered: