Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | public function setUp() |
||
30 | { |
||
31 | parent::setUp(); |
||
32 | $this->composer = new Composer(); |
||
33 | $this->composer->setConfig(new Config(true, getcwd())); |
||
34 | $this->io = $this->getMock('Composer\IO\IOInterface'); |
||
35 | $this->event = $this->getMock('Composer\Script\Event', [], ['test', $this->composer, $this->io]); |
||
36 | |||
37 | $this->object = new Plugin(); |
||
38 | $this->object->setPackages($this->packages); |
||
39 | $this->object->activate($this->composer, $this->io); |
||
40 | } |
||
41 | |||
52 |