1 | <?php |
||
19 | class BrowserTestSuite extends AbstractTestSuite |
||
20 | { |
||
21 | |||
22 | /** |
||
23 | * Generates suite name by the browser configuration. |
||
24 | * |
||
25 | * @param array $browser Browser configuration. |
||
26 | * |
||
27 | * @return string |
||
28 | */ |
||
29 | 7 | public function nameFromBrowser(array $browser) |
|
41 | |||
42 | /** |
||
43 | * Sets given browser to be used in each underlying test cases and test suites. |
||
44 | * |
||
45 | * @param array $browser Browser configuration. |
||
46 | * @param array $tests Tests to process. |
||
47 | * |
||
48 | * @return self |
||
49 | */ |
||
50 | 2 | public function setBrowserFromConfiguration(array $browser, array $tests = null) |
|
68 | |||
69 | } |
||
70 |