We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
46 | protected function assertEntryEquals($expected, $actual) |
||
47 | { |
||
48 | foreach ($expected as $key => $value) { |
||
49 | if (is_array($value)) { |
||
50 | $this->assertEquals(count($value), $actual->{$key}->count()); |
||
51 | } else { |
||
52 | $this->assertEquals($value, $actual->{$key}); |
||
53 | } |
||
54 | } |
||
55 | |||
56 | $this->assertNotNull($actual->created_at); |
||
57 | $this->assertNotNull($actual->updated_at); |
||
58 | } |
||
60 |