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