1 | <?php |
||
8 | class LineTest extends TestCase |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | protected $textToTest = 'the possibility that there are detectable and measurable patterns that indicate the'; |
||
14 | |||
15 | /** |
||
16 | * @covers \LazyEight\DiTesto\Line::__construct |
||
17 | * @uses \LazyEight\DiTesto\Line |
||
18 | * @return \LazyEight\DiTesto\Line |
||
19 | */ |
||
20 | public function testCanBeCreated() |
||
27 | |||
28 | /** |
||
29 | * @covers \LazyEight\DiTesto\Line::getContent |
||
30 | * @covers \LazyEight\DiTesto\Line::__construct |
||
31 | * @depends testCanBeCreated |
||
32 | * @uses \LazyEight\DiTesto\TextFileReader |
||
33 | */ |
||
34 | public function testCanGetContent(Line $line) |
||
38 | |||
39 | /** |
||
40 | * @covers \LazyEight\DiTesto\Line::__toString |
||
41 | * @covers \LazyEight\DiTesto\Line::__construct |
||
42 | * @depends testCanBeCreated |
||
43 | * @uses \LazyEight\DiTesto\TextFileReader |
||
44 | */ |
||
45 | public function testCanToString(Line $line) |
||
49 | } |
||
50 |