How to assert existing of one key value in array of associative array in PHPUnit?
I have such result from my code that I am trying to test: $result = [ [ "lable" => "first", ["type" => "customer", "balance" => 1000], ], [ "lable" => "another", ["type" => "retailer", "balance" => 1500], ], ] so…