コード例 #1
0
 /**
  * Returns the string representation of the char with the char length.
  */
 public function testReturnTheStringRepresentationOfTheCharWithTheCharLength()
 {
     $instance = new FieldType\Char(4);
     $result = $instance->toNative();
     static::assertEquals('char(4)', $result);
 }