Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | public function testExpectationListPopulates() |
||
16 | { |
||
17 | $this->logInAsUser('user-1'); |
||
18 | $this->clickFirstGroupAddTestButton(); |
||
19 | |||
20 | $this->waitForLoadingAnimation(); |
||
21 | $this->assertEquals([ |
||
22 | '', |
||
23 | 'toPing', |
||
24 | 'toResolveTo', |
||
25 | 'toRespondHttp', |
||
26 | 'toRespondWithMimeType', |
||
27 | 'toContainText', |
||
28 | ], $this->getSelectOptionValues('#page > div > form > select')); |
||
29 | } |
||
30 | |||
54 |