Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class ByteCodeTest extends TestCase |
||
12 | { |
||
13 | |||
14 | public function provider() |
||
15 | { |
||
16 | return [ |
||
17 | ['test'], |
||
18 | [str_repeat('abcdf', 1000)], |
||
19 | ['ᚠᛇᚻ᛫ᛒᛦᚦ᛫ᚠᚱᚩᚠᚢᚱ᛫ᚠᛁᚱᚪ᛫ᚷᛖᚻᚹᛦᛚᚳᚢᛗ'] |
||
20 | |||
21 | ]; |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @param $data |
||
26 | * @throws \Exception |
||
27 | * @dataProvider provider |
||
28 | */ |
||
29 | public function testWrite($data) |
||
39 | } |
||
40 | } |