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