Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
12 | public function testIsWebUrl() |
||
13 | { |
||
14 | $this::assertTrue(ExternHttpClient::isWebURL('https://fr.wikipedia.fr/wiki/WP:BOT')); |
||
15 | $this::assertTrue(ExternHttpClient::isWebURL('http://test.com')); |
||
16 | |||
17 | $this::assertFalse(ExternHttpClient::isWebURL('ftp://test.com:88')); |
||
18 | $this::assertfalse(ExternHttpClient::isWebURL('http://test.com bla')); |
||
19 | $this::assertFalse(ExternHttpClient::isWebURL('bla')); |
||
20 | } |
||
23 |