/**
  * Returns the string representation of the int with the int length.
  */
 public function testReturnsTheStringRepresentationOfTheIntWithTheIntLength()
 {
     $instance = new FieldType\IntSigned(144);
     $result = $instance->toNative();
     static::assertEquals('int(144)', $result);
 }