Download the PHP package holgerk/assert-golden without Composer
On this page you can find all versions of the php package holgerk/assert-golden. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package assert-golden
assertGolden Assertion
Same as assertEquals
, but when null
is given as argument, the test file is automatically edited and null
is substituted with the actual value
Given the following code:
...during the first execution null
replaced with the actual value:
In principle, it's about saving oneself the recurring work of writing, updating and copying an expectation.
Installation
You can install the package via composer:
Usage
Just pass null
to the assertGolden
expectation and null
will be automatically replaced during the
first test run.
Trait Usage
Function Usage
Later you can edit the expectation by hand or insert null
again to have it automatically replaced.
Regenerate all expectations
If you want to regenerate all expectations at once you can add the argument: --update-golden
to your phpunit
invocation.
Limitation
It is not possible to have more than one assertGolden call on one line. Because the automatic replacement is based on the debug_backtrace
function, which gives us the line number and file of the assertGolden caller, and the composer package nikic/php-parser
, which is used to get the exact start and end position of the expectation argument. So if there are more than one assertGolden call it is not possible to detect a distinct position.
See Also
- phpunit-snapshot-assertions
This plugin also facilitates the automatic generation of expectations from the actual value, but it will store the generated expectation in separate files. - pest-plugin-equal-golden
Same thing for pestphp
Credits
License
The MIT License (MIT). Please see License File for more information.
All versions of assert-golden with dependencies
nikic/php-parser Version ^4.16||^5
symfony/var-exporter Version ^4||^5||^6||^7
phpunit/phpunit Version ^8||^9||^10||^11
composer-runtime-api Version *