| Total Complexity | 2 | 
| Total Lines | 16 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php declare(strict_types=1); | ||
| 10 | class IpResolverTest extends TestCase | ||
| 11 | { | ||
| 12 | public function testEmptyRequest() | ||
| 13 |     { | ||
| 14 | $stack = new RequestStack(); | ||
| 15 | $stack->push(new Request()); | ||
| 16 | $resolver = new IpResolver($stack); | ||
| 17 | self::assertNull($resolver->resolveIp()); | ||
| 18 | } | ||
| 19 | |||
| 20 | public function testRequest() | ||
| 26 | } | ||
| 27 | } | ||
| 28 |