示例#1
0
 /**
  * @dataProvider getIsQuoted
  * @group DBAL-830
  */
 public function testIsQuoted($columnName, $isQuoted)
 {
     $type = Type::getType('string');
     $column = new Column($columnName, $type);
     $this->assertSame($isQuoted, $column->isQuoted());
 }