We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 30 | Session::getInstance(); |
||
| 31 | |||
| 32 | // The Page should not be modified when href() is called |
||
| 33 | $expected = clone $page; |
||
| 34 | srand(0); // for a deterministic SN |
||
| 35 | $href = $page->href(); |
||
| 36 | self::assertSame(LOADER_URI . '?sn=qpbqzr', $href); |
||
| 37 | self::assertEquals($expected, $page); |
||
| 41 |