Ejemplo n.º 1
0
 public function testItThrowsExceptionIfPropertyNameNotFound()
 {
     $properties = [];
     $sort = new Sort($properties);
     $this->setExpectedException(InvalidArgumentException::class);
     $sort->property('aPropertyName');
 }