Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function testToTexts() |
||
18 | { |
||
19 | $texts = (new File(self::TEXT_FIXTURE_FILE_PATH))->toTexts(['ctx' => 'in tests']); |
||
20 | $this->assertEquals( |
||
21 | [ |
||
22 | new Text( |
||
23 | "mispelling1\n", |
||
24 | TextEncoding::ASCII, |
||
25 | [ |
||
26 | 'ctx' => 'in tests', |
||
27 | 'filePath' => realpath(self::TEXT_FIXTURE_FILE_PATH), |
||
28 | ] |
||
29 | ), |
||
30 | ], |
||
31 | $texts |
||
32 | ); |
||
59 |