Esempio n. 1
0
 public function testAddComment()
 {
     $adapter = new MysqlAdapter([]);
     $table = new \Phinx\Db\Table('ntable', ['comment' => 'test comment'], $adapter);
     $options = $table->getOptions();
     $this->assertEquals('test comment', $options['comment']);
 }