示例#1
0
 public function testTooLong()
 {
     $this->expectException(ColumnException::class);
     $column = new TextColumn('foo', 'text');
     $column->check(str_repeat('a', 65536));
 }