Example #1
0
 /**
  * @covers ::getCollation
  */
 public function testGetCollation()
 {
     $table = new Table(null, 'utf8_unicode_ci', new Table\ColumnCollection(), new Table\IndexCollection());
     $this->assertSame('utf8_unicode_ci', $table->getCollation());
 }