doUpdate() public method

public doUpdate ( Updater $updater )
$updater Piwik\Updater
Example #1
0
 public function test_doUpdate_DoesNotError_WhenDimensionsAlreadyInTables()
 {
     $this->addDimensionsToTables();
     $updater = $this->getMockUpdater();
     $this->columnsUpdater->doUpdate($updater);
     $this->assertDimensionsAddedToTables();
 }