Last active
December 17, 2015 06:48
-
-
Save DavertMik/5567711 to your computer and use it in GitHub Desktop.
Codeception resolving naming collisions in aliases. RFC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// resolving naming collisions with aliases | |
$I->seeInDatabase() | |
$I->click_usingSelenium2() | |
$I->click_Selenium2() | |
$I->seeInDatabase() // default | |
$I->seeInDatabase_usingDb() // optional | |
$I->seeInDatabase_usingSecondDb() // for extended class | |
$I->seeInDatabase_SecondDb() //shortcut for _usingSecondDb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment