30
1
mirror of https://github.com/joomla-extensions/weblinks.git synced 2024-06-01 22:10:50 +00:00

My love and dream is here

This commit is contained in:
puneet0191 2015-10-30 21:52:05 +05:30
parent b00a245253
commit 9ce76d7ed0

View File

@ -22,4 +22,18 @@ class AcceptanceHelper extends \Codeception\Module
return $this->config[$element];
}
/**
* Function to Verify the Tabs on a Joomla! screen
*
* @param $actualTabs
* @param $expectedTabs
* @param $pageName
*
* @return void
*/
public function verifyTabs($actualTabs, $expectedTabs, $pageName)
{
$this->assertEquals($expectedTabs, $actualTabs, "Tab Labels should match on edit view of" . $pageName);
}
}