1 | <?php |
||
5 | class SmokeTest extends BootstrapTestSuite |
||
6 | { |
||
7 | /** |
||
8 | * @dataProvider explosionProvider |
||
9 | */ |
||
10 | public function testFunctionalTests($path, $status = 200) |
||
11 | { |
||
12 | $this->setupTest($path); |
||
13 | $this->globalTests($status); |
||
14 | } |
||
15 | |||
16 | public function explosionProvider() |
||
17 | { |
||
18 | return array( |
||
19 | array('/'), |
||
20 | array('/users'), |
||
21 | array('/users/', 301), |
||
22 | array('/poll'), |
||
23 | array('/users/create'), |
||
24 | ); |
||
25 | } |
||
26 | } |
||
27 |