Longman\TelegramBot\Tests\Unit\LocationTest::testGetLongitude PHP Method

testGetLongitude() public method

Testing getLongitude
public testGetLongitude ( )
    public function testGetLongitude()
    {
        $location = new Location($this->coordinates);
        $long = $location->getLongitude();
        $this->assertInternalType('float', $long);
        $this->assertEquals($this->coordinates['longitude'], $long);
    }