Location\Bounds::getNorthWest PHP 메소드

getNorthWest() 공개 메소드

Getter
public getNorthWest ( ) : Coordinate
리턴 Coordinate
    public function getNorthWest()
    {
        return $this->northWest;
    }

Usage Example

예제 #1
0
 /**
  * @covers Location\Bounds::getNorthWest
  */
 public function testGetNortWest()
 {
     $c = new Coordinate(50, 10);
     $this->assertEquals($c, $this->object->getNorthWest());
 }