My page

A boy went home to see his mother.

'; $links = HTTP::getLinksIn($content); $this->assertTrue(is_array($links)); $this->assertTrue(count($links) == 2); } /** * Tests {@link HTTP::setGetVar()} */ public function testSetGetVar() { $expected = array ( '/?foo=bar' => array('foo', 'bar', '/'), '/?baz=buz&foo=bar' => array('foo', 'bar', '/?baz=buz'), '/?buz=baz&foo=baz' => array('foo', 'baz', '/?foo=bar&buz=baz'), '/?foo=var' => array('foo', 'var', '/?foo=&foo=bar'), '/?foo[test]=var' => array('foo[test]', 'var', '/?foo[test]=another') ); foreach($expected as $result => $args) { $this->assertEquals( call_user_func_array(array('HTTP', 'setGetVar'), $args), str_replace('&', '&', $result) ); } } }