/**
  * @expectedException \Ivory\GoogleMap\Exception\DistanceMatrixException
  * @expectedExceptionMessage The distance matrix response element status can only be : NOT_FOUND, OK, ZERO_RESULTS.
  */
 public function testStatusWithInvalidValue()
 {
     $this->distanceMatrixResponseElement->setStatus('foo');
 }
 public function testDefaultState()
 {
     $this->assertSame($this->elements, $this->distanceMatrixResponseRow->getElements());
 }