public function testByLatitudeLongitude()
 {
     $options = new RestaurantsLocalFavoritesRequestOptions(0, 25);
     $options->setLatitude(38.53463);
     $options->setLongitude(-90.286781);
     $restaurants = $this->service->getRestaurants($options);
     $this->assertTrue(count($restaurants->getRestaurant()) > 0);
 }