setFreeField() public method

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