/**
  * Test for add Columns
  *
  * @return void
  */
 public function testAddColumns()
 {
     $index = new PMA\libraries\Index();
     $index->addColumns($this->_params['columns']);
     $this->assertTrue($index->hasColumn("column1"));
     $this->assertTrue($index->hasColumn("column2"));
     $this->assertTrue($index->hasColumn("column3"));
     $this->assertEquals(3, $index->getColumnCount());
 }