public function testGetType()
 {
     $point = new Point(10, 10);
     $result = $point->getType();
     $this->assertEquals('Point', $result);
 }