Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function testSeeJsonStructureEquals() |
||
14 | { |
||
15 | $this->response = new \Illuminate\Http\Response(new JsonSerializableMixedResourcesStub); |
||
16 | |||
17 | $this->seeJsonStructureEquals([ |
||
18 | 'foo', |
||
19 | 'baz' => ['*' => ['bar' => ['*'], 'foo']], |
||
20 | 'bars' => ['*' => ['bar', 'foo']], |
||
21 | 'foobar' => ['foobar_foo', 'foobar_bar'], |
||
22 | ]); |
||
23 | } |
||
24 | |||
40 |