/** * testBuildTableParameters method * * @return void */ public function testBuildTableParameters() { $this->Dbo->cacheSources = $this->Dbo->testing = false; $data = array('charset' => 'utf8', 'collate' => 'utf8_unicode_ci', 'engine' => 'InnoDB'); $result = $this->Dbo->buildTableParameters($data); $expected = array('DEFAULT CHARSET=utf8', 'COLLATE=utf8_unicode_ci', 'ENGINE=InnoDB'); $this->assertEquals($expected, $result); }