setFreeField() public method

public setFreeField ( string $freeField )
$freeField string
 /**
  * @test
  */
 public function setFreeFieldThrowsUnexpectedValue()
 {
     $this->setExpectedException(\UnexpectedValueException::class);
     $this->transaction->setFreeField(str_repeat('1', 129));
 }