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