33 lines
354 B
PHP
33 lines
354 B
PHP
<?php
|
|
|
|
require_once '../src/GooglePlaces.php';
|
|
|
|
class GooglePlacesTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
public function testNearbySearchProximity()
|
|
{
|
|
|
|
}
|
|
|
|
public function testNearbySearchDistance()
|
|
{
|
|
|
|
}
|
|
|
|
public function testNearbySearchPagination()
|
|
{
|
|
|
|
}
|
|
|
|
public function testRadarSearch()
|
|
{
|
|
|
|
}
|
|
|
|
public function testDetails()
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
?>
|