public function testGeneratesUniqueIndexCreationSql()
 {
     $indexDef = new \Doctrine\DBAL\Schema\Index('index_name', array('test', 'test2'), true);
     $sql = $this->_platform->getCreateIndexSQL($indexDef, 'test');
     $this->assertEquals($this->getGenerateUniqueIndexSql(), $sql);
 }