用PHPUnit进行快照测试 快照测试是一种无需编写实际测试用例即可进行测试的方法 use Spatie \ Snapshots \ MatchesSnapshots ; class OrderTest { use MatchesSnapshots ; public function test_it_casts_to_json () { $ order = new Order ( 1 ); $ this -> assertMatchesJsonSnapshot ( $ order -> toJson ()); } } 在第一次