| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 6 | public function _before(AcceptanceTester $I) |
||
|
|
|||
| 7 | { |
||
| 8 | $I->wantTo('login to admin'); |
||
| 9 | $I->amOnPage('admin/'); |
||
| 10 | $I->seeInCurrentUrl('admin/'); |
||
| 11 | $I->fillField('username','tester'); |
||
| 12 | $I->fillField('password','tester'); |
||
| 13 | $I->checkOption('persistent'); |
||
| 14 | $I->click('Přihlásit', '#content'); |
||
| 15 | $I->see('Úvod'); |
||
| 16 | $I->see('tester'); |
||
| 17 | } |
||
| 18 | |||
| 49 |
This check marks parameter names that have not been written in camelCase.
In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes
databaseConnectionString.