1 | <?php |
||
6 | class WindowsTest extends TestCase |
||
7 | { |
||
8 | /** |
||
9 | * @var Windows |
||
10 | */ |
||
11 | private $subject; |
||
12 | |||
13 | protected function setUp() |
||
19 | |||
20 | /** |
||
21 | * @test |
||
22 | * @dataProvider userAgentOsDataProvider |
||
23 | */ |
||
24 | public function match_WithValidValue($userAgent) |
||
28 | |||
29 | /** |
||
30 | * @test |
||
31 | */ |
||
32 | public function match_WithInvalidValue() |
||
36 | |||
37 | /** |
||
38 | * @test |
||
39 | */ |
||
40 | public function getName_returnsWindows() |
||
44 | |||
45 | public function userAgentOsDataProvider() |
||
65 | } |
||
66 |