owowagency / phpunit-snapshot-assertions
是spatie/phpunit-snapshot-assertions包的扩展。
v1.0.0
2023-09-25 13:14 UTC
Requires
README
spatie/phpunit-snapshot-assertions包的扩展。此包添加了assertJsonStructureSnapshot()
方法,该方法仅比较JSON键,因此值可以不同,测试仍会通过。
安装
composer require --dev owowagency/phpunit-snapshot-assertions
用法
use OwowAgency\Snapshots\MatchesSnapshots;
class OrderTest
{
use MatchesSnapshots;
public function test_it_casts_to_json()
{
$order = new Order(1);
$this->assertJsonStructureSnapshot($order->toJson());
}
}