blob: 4bfb3545218fa102f86edc4ec221a7be36012747 (
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 an excellent 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-connected-excellent.htm')
)
);
--EXPECT--
array(3) {
["type"]=>
string(4) "GPRS"
["network"]=>
string(7) "BASE DE"
["signal strength"]=>
string(9) "excellent"
}
|