| Total Complexity | 2 |
| Total Lines | 11 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class PhpUserAgentParserTest extends AbstractParserTest |
||
| 10 | { |
||
| 11 | public function setUp() |
||
| 12 | { |
||
| 13 | if (!function_exists('parse_user_agent')) { |
||
| 14 | $this->markTestSkipped( |
||
| 15 | 'Library "donatj/phpuseragentparser" not installed, skipped.' |
||
| 16 | ); |
||
| 17 | } |
||
| 18 | |||
| 19 | $this->setParser(new PhpUserAgentParser()); |
||
| 20 | } |
||
| 22 |