1 | <?php |
||
17 | class TextContentParserTest extends \PHPUnit_Framework_TestCase |
||
18 | { |
||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $file = './tests/files/urls.txt'; |
||
23 | |||
24 | /** |
||
25 | * @covers \LazyEight\DiTesto\Parser\TextContentParser::__construct |
||
26 | * @uses \LazyEight\DiTesto\Parser\TextContentParser |
||
27 | * @return \LazyEight\DiTesto\Parser\TextContentParser |
||
28 | */ |
||
29 | public function testCanBeCreated() |
||
36 | |||
37 | /** |
||
38 | * @covers \LazyEight\DiTesto\Parser\TextContentParser::parse |
||
39 | * @covers \LazyEight\DiTesto\Parser\TextContentParser::getValue |
||
40 | * @covers \LazyEight\DiTesto\Parser\TextContentParser::getLines |
||
41 | * @uses \LazyEight\DiTesto\Parser\TextContentParser |
||
42 | * @depends testCanBeCreated |
||
43 | * @uses \LazyEight\DiTesto\Parser\TextContentParser |
||
44 | * @param \LazyEight\DiTesto\Parser\TextContentParser |
||
45 | */ |
||
46 | public function testCanBeParsed(TextContentParser $loader) |
||
53 | |||
54 | private function getLinesArray(Stringy $content) |
||
63 | } |
||
64 |