1 | <?php |
||
21 | class VisibilityTest extends TestCase |
||
22 | { |
||
23 | /** |
||
24 | * @dataProvider visibilityProvider |
||
25 | * @covers ::__construct |
||
26 | * @covers ::__toString |
||
27 | */ |
||
28 | public function testVisibility($input, $expected) |
||
34 | |||
35 | public function visibilityProvider() |
||
44 | |||
45 | /** |
||
46 | * @expectedException \InvalidArgumentException |
||
47 | * @covers ::__construct |
||
48 | */ |
||
49 | public function testVisibilityChecksInput() |
||
53 | } |
||
54 |