Exemplo n.º 1
0
 public function testGetWeather()
 {
     $lat = "-37.13009600";
     $lon = "145.07711000";
     $Place = new Place($lat, $lon);
     $weather = $Place->getWeatherForecast();
     $this->assertInternalType("array", $weather);
     $this->assertCount(14, $weather);
 }