Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public function testSelect() |
||
25 | { |
||
26 | $this |
||
27 | /* @var \Cubiche\Core\Selector\Selector $selector */ |
||
28 | ->given($selector = $this->newDefaultTestedInstance()) |
||
29 | ->then() |
||
30 | ->when($selected = $selector->select($this->newDefaultTestedInstance())) |
||
31 | ->object($selected) |
||
32 | ->isInstanceOf(SelectorInterface::class) |
||
33 | ; |
||
34 | } |
||
35 | } |
||
36 |