Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function testSeeJsonStructureEquals() |
||
23 | { |
||
24 | |||
25 | $this->assertTrue(TestResponse::hasMacro('seeJsonStructureEquals')); |
||
26 | |||
27 | $this->response->seeJsonStructureEquals([ |
||
28 | 'foo', |
||
29 | 'baz' => ['*' => ['bar' => ['*'], 'foo']], |
||
30 | 'bars' => ['*' => ['bar', 'foo']], |
||
31 | 'foobar' => ['foobar_foo', 'foobar_bar'], |
||
32 | ]); |
||
33 | } |
||
34 | |||
50 |