Example #1
0
 /**
  * @expectedException RuntimeException
  */
 public function testTableParse()
 {
     $query = $this->readInputFile('table.sql');
     $table = new Table($query);
     $this->assertEquals('foobar', $table->getName());
     $this->assertTrue($table->hasField('foobar_id'));
     $this->assertTrue($table->hasPrimary());
     $field = new Field('', 'foobar_id');
     $table->addField($field);
 }