Conditions | 1 |
Paths | 1 |
Total Lines | 20 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | function it_writes_items(Table $table) |
||
22 | { |
||
23 | $table->addRow(Argument::type('array'))->shouldBeCalledTimes(2); |
||
24 | $table->setHeaders(['first', 'second'])->shouldBeCalled(); |
||
25 | $table->render()->shouldBeCalled(); |
||
26 | |||
27 | $this->prepare(); |
||
28 | |||
29 | $this->writeItem([ |
||
30 | 'first' => 'The first', |
||
31 | 'second' => 'Second property', |
||
32 | ]); |
||
33 | |||
34 | $this->writeItem([ |
||
35 | 'first' => 'Another first', |
||
36 | 'second' => 'Last second', |
||
37 | ]); |
||
38 | |||
39 | $this->finish(); |
||
40 | } |
||
41 | |||
49 |