phpunit
phpunit copied to clipboard
The PHP Unit Testing framework.
AbstractPhpProcess: 299: Bind the output directly to the test instance 362: Removed output print -> handled by testCase Added TestSeperateProcesses.php to test output in @runTestsInSeparateProcesses Added log-junit-seprate-processes.phpt to test output...
https://github.com/sebastianbergmann/phpunit/issues/4782
Proposal for issue #4852
This PR attempts to implement #3795 Tests have been created to verify that the configuration parses as expected, and that bootstraps are loaded both in a standard flow, as well...
This change makes it much easier to register multiple subscribers with a single method call.
Relates to feature request from php-code-coverage repo Issue: https://github.com/sebastianbergmann/php-code-coverage/issues/735 PR: https://github.com/sebastianbergmann/php-code-coverage/pull/869
The current mock class generation routines do not support using mock class names with namespaces, i.e. `\Some\Test\Class`. This PR supplies such support.
Fixes #4584, fixes #4674
I have a use case where I need to ensure that a file content is equal to an expected string. Since there is already a method for asserting the opposite...