Cmfcmf\OpenWeatherMap\IntegTests\CurrentWeatherTest::testByCityCountry PHP Метод

testByCityCountry() публичный Метод

public testByCityCountry ( )
    public function testByCityCountry()
    {
        $weather = $this->owm->getWeather('London,CA');
        // Geo coordinates
        $this->assertEquals('-81.23', $weather->city->lon);
        $this->assertEquals('42.98', $weather->city->lat);
        // Country
        $this->assertEquals('CA', $weather->city->country);
    }