public function testPointFromArrayToString() { $expected = '5 5'; $point = new Point(array(5, 5)); $this->assertEquals($expected, (string) $point); }