Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
33.33% covered (danger)
33.33%
1 / 3
0.00% covered (danger)
0.00%
0 / 1
CRAP
n/a
0 / 0
before_assert_phpbb3_3981
33.33% covered (danger)
33.33%
1 / 3
0.00% covered (danger)
0.00%
0 / 1
3.19
1<?php
2/**
3*
4* This file is part of the phpBB Forum Software package.
5*
6* @copyright (c) phpBB Limited <https://www.phpbb.com>
7* @license GNU General Public License, version 2 (GPL-2.0)
8*
9* For full copyright and license information, please see
10* the docs/CREDITS.txt file.
11*
12*/
13
14function before_assert_phpbb3_3981($vars)
15{
16    if (!function_exists('idn_to_ascii'))
17    {
18        extract($vars);
19        $test->markTestSkipped('International URLs need idn_to_ascii()');
20    }
21}