Started to set up tests, added configs

This commit is contained in:
Josh Sherman 2014-05-14 17:35:25 -04:00
parent d22145c379
commit c3fe6e8e59
3 changed files with 60 additions and 0 deletions

View file

@ -0,0 +1,33 @@
<?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()
{
}
}
?>