blob: 6efd48ab60dc9dbd52dc627a94ba202395b5373c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--TEST--
test Wrt3g_HtmlParser::index_wstatus1() when we have no connection
--FILE--
<?php
chdir(dirname(__FILE__));
require_once dirname(__FILE__) . '/../Wrt3g/HtmlParser.php';
$p = new Wrt3g_HtmlParser();
var_dump(
$p->index_wstatus1(
file_get_contents('index_wstatus1-aquiring.htm')
)
);
--EXPECT--
array(3) {
["type"]=>
NULL
["network"]=>
NULL
["signal strength"]=>
NULL
}
|