1 | <?php |
||
9 | class ResponseTest extends TestCase |
||
10 | { |
||
11 | /** |
||
12 | * @test |
||
13 | * @covers ::__construct |
||
14 | */ |
||
15 | public function constructNoArguments() |
||
22 | |||
23 | /** |
||
24 | * @test |
||
25 | * @dataProvider constructWithArgumentsData |
||
26 | * @covers ::__construct |
||
27 | * @covers ::valid |
||
28 | * @covers ::getMessage |
||
29 | */ |
||
30 | public function constructWithArguments($isValid, $error) |
||
37 | |||
38 | public function constructWithArgumentsData() |
||
45 | } |
||
46 |