Current File : //opt/RZphp73/includes/test/Services_GeoNames/tests/test_other_04.phpt |
--TEST--
Test for other code parts 04
--FILE--
<?php
require_once dirname(__FILE__) . '/setup.php';
$geo = Services_GeoNames_factory(
substr(basename(__FILE__), 0, -4),
'username',
'auth_token'
);
$geo->url = 'http://www.example.com/';
try {
$ret = $geo->search(array('q' => 'kjhkjhkjh'));
} catch (Services_GeoNames_Exception $exc) {
echo $exc->response->getStatus() . ' ' . $exc->getMessage();
}
?>
--EXPECTF--
404 Not Found